InAppPurchase RequestProductInformationAsync Method Delta Engine Documentation

Namespace: DeltaEngine.Platforms
Assembly: DeltaEngine.Platforms (in DeltaEngine.Platforms.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public abstract bool RequestProductInformationAsync(
	int[] productIds
)

Parameters

productIds
Type:  System Int32 

Return Value

Type: Boolean
Remarks

Tests: DeltaEngine.Platforms.Tests.InAppPurchaseTests
Examples

1 unit tests call DeltaEngine.Platforms.InAppPurchase.RequestProductInformationAsync(System.Int32[])
[Test]
public void RequestProductInformation()
{
    var inAppPurchase = GetMockInAppPurchase();
    inAppPurchase.OnReceivedProductInformation += ReceivedProductInformation;
    Assert.IsTrue(inAppPurchase.RequestProductInformationAsync(new[] { 0 }));
}
See Also