Get article details/information based on a list of articles.

Namespace:  SolarWebService
Assembly:  SolarWebService (in SolarWebService.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public ArticleInformationResult ArticleInformation(
	AuthenticationObject authentication,
	ArticleNumber[] articleNumbers,
	bool includeCatalogData
)
Visual Basic (Declaration)
Public Function ArticleInformation ( _
	authentication As AuthenticationObject, _
	articleNumbers As ArticleNumber(), _
	includeCatalogData As Boolean _
) As ArticleInformationResult
JavaScript
function ArticleInformation(authentication, articleNumbers, includeCatalogData);

Parameters

authentication
Type: SolarWebServiceAPI.SWS28July2009..::.AuthenticationObject
Solar Gateway user authentication
articleNumbers
Type: array< SolarWebServiceAPI.SWS28July2009..::.ArticleNumber >[]()[]
The list of article numbers
includeCatalogData
Type: System..::.Boolean
If all properties should be populated with data.

Return Value

ArticleInformationResult, which is a list of ArticleInformation.

Remarks

If setting the includeCatalogData parameter to false will increase speed.

Examples

This is how the ArticleInformation method can be used with VB:
CopyVB.NET
Dim A(0) As sws.ArticleNumber
Dim C As sws.ArticleInformationResult

A(0) = New sws.ArticleNumber
A(0).Value = "0913014316"

Dim Auth As New sws.AuthenticationObject
Auth.Initials = "xxxx"
Auth.Password = "xxxxxxxx"

Dim WS As New sws.SolarWebService
WS.Credentials = System.Net.CredentialCache.DefaultCredentials
C = WS.ArticleInformation(Auth, A, False)

See Also