Get netto prices for a list of articles.

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

Syntax

C#
public NettoPriceInformationResult NettoPrice(
	AuthenticationObject authentication,
	ArticleNumber[] articleNumbers
)
Visual Basic (Declaration)
Public Function NettoPrice ( _
	authentication As AuthenticationObject, _
	articleNumbers As ArticleNumber() _
) As NettoPriceInformationResult
JavaScript
function NettoPrice(authentication, articleNumbers);

Parameters

authentication
Type: SolarWebServiceAPI.SWS28July2009..::.AuthenticationObject
Solar Gateway user authentication
articleNumbers
Type: array< SolarWebServiceAPI.SWS28July2009..::.ArticleNumber >[]()[]
The list of article numbers

Return Value

NettoPriceInformationResult, which is an array of NettoPriceInformation

Remarks

The limit of articles that can be processed at once is 200.

Examples

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

' This array only contains one article.
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.NettoPrice(Auth, A, False)

See Also