C# Class Cimbalino.Phone.Toolkit.Services.MarketplaceInformationService

Represents an implementation of the IMarketplaceInformationService.
Inheritance: IMarketplaceInformationService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit Class Usage Examples

Public Methods

Method Description
GetAppInformation ( Exception>.Action resultAction ) : void

Retrieves marketplace information about the running application.

GetAppInformation ( string productId, Exception>.Action resultAction ) : void

Retrieves marketplace information about the specified application.

GetAppInformation ( string productId, CultureInfo cultureInfo, Exception>.Action resultAction ) : void

Retrieves marketplace information about the specified application, using the specified CultureInfo for territory.

GetAppInformationAsync ( ) : Task

Retrieves marketplace information about the running application.

GetAppInformationAsync ( string productId ) : Task

Retrieves marketplace information about the running application.

GetAppInformationAsync ( string productId, CultureInfo cultureInfo ) : Task

Retrieves marketplace information about the running application.

Private Methods

Method Description
CreateWebRequest ( string productId, CultureInfo cultureInfo ) : WebRequest
WebRequestEndGetResponse ( IAsyncResult asyncResult ) : MarketplaceAppNode

Method Details

GetAppInformation() public method

Retrieves marketplace information about the running application.
public GetAppInformation ( Exception>.Action resultAction ) : void
resultAction Exception>.Action The to be called once the operation is finished.
return void

GetAppInformation() public method

Retrieves marketplace information about the specified application.
public GetAppInformation ( string productId, Exception>.Action resultAction ) : void
productId string The application Product ID.
resultAction Exception>.Action The to be called once the operation is finished.
return void

GetAppInformation() public method

Retrieves marketplace information about the specified application, using the specified CultureInfo for territory.
public GetAppInformation ( string productId, CultureInfo cultureInfo, Exception>.Action resultAction ) : void
productId string The application Product ID.
cultureInfo System.Globalization.CultureInfo The for territory.
resultAction Exception>.Action The to be called once the operation is finished.
return void

GetAppInformationAsync() public method

Retrieves marketplace information about the running application.
public GetAppInformationAsync ( ) : Task
return Task

GetAppInformationAsync() public method

Retrieves marketplace information about the running application.
public GetAppInformationAsync ( string productId ) : Task
productId string The application Product ID.
return Task

GetAppInformationAsync() public method

Retrieves marketplace information about the running application.
public GetAppInformationAsync ( string productId, CultureInfo cultureInfo ) : Task
productId string The application Product ID.
cultureInfo System.Globalization.CultureInfo The for territory.
return Task