SubscriptionHelperGetProvisionSubscriptionsWithStateFilter Method |
Gets all subscriptions pending provisioning.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static List<Subscription> GetProvisionSubscriptionsWithStateFilter(
List<string> subscriptionStates,
out Exception exception,
Guid[] resellerIds = null,
Guid[] excludedResellerIds = null
)
Public Shared Function GetProvisionSubscriptionsWithStateFilter (
subscriptionStates As List(Of String),
<OutAttribute> ByRef exception As Exception,
Optional resellerIds As Guid() = Nothing,
Optional excludedResellerIds As Guid() = Nothing
) As List(Of Subscription)
public:
static List<Subscription^>^ GetProvisionSubscriptionsWithStateFilter(
List<String^>^ subscriptionStates,
[OutAttribute] Exception^% exception,
array<Guid>^ resellerIds = nullptr,
array<Guid>^ excludedResellerIds = nullptr
)
static member GetProvisionSubscriptionsWithStateFilter :
subscriptionStates : List<string> *
exception : Exception byref *
?resellerIds : Guid[] *
?excludedResellerIds : Guid[]
(* Defaults:
let _resellerIds = defaultArg resellerIds null
let _excludedResellerIds = defaultArg excludedResellerIds null
*)
-> List<Subscription>
Parameters
- subscriptionStates
- Type: System.Collections.GenericListString
A list of states that should be used when fetching subscriptions to provision. - exception
- Type: SystemException
[Missing <param name="exception"/> documentation for "M:Atomia.Billing.Core.Sdk.BusinessLogic.SubscriptionHelper.GetProvisionSubscriptionsWithStateFilter(System.Collections.Generic.List{System.String},System.Exception@,System.Guid[],System.Guid[])"]
- resellerIds (Optional)
- Type: SystemGuid
The reseller ids. - excludedResellerIds (Optional)
- Type: SystemGuid
The excluded reseller ids.
Return Value
Type:
ListSubscription[Missing <returns> documentation for "M:Atomia.Billing.Core.Sdk.BusinessLogic.SubscriptionHelper.GetProvisionSubscriptionsWithStateFilter(System.Collections.Generic.List{System.String},System.Exception@,System.Guid[],System.Guid[])"]
See Also