[TIBCO.EMS .NET Admin client library 8.1 documentation]

Returns all subscriptions in the server.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public SubscriptionInfo[] GetSubscriptions()
Public Function GetSubscriptions As SubscriptionInfo()
public:
array<SubscriptionInfo^>^ GetSubscriptions()

Return Value

Array of all subscriptions in the server or array of 0 length.

Remarks

Returned array may be of 0 length if there is no subscription in the server. Returned subscriptions are not sorted and placed in the array in any order. Application may need to sort the subscriptions in application-specific order if required.

This method is equivalent to calling method GetSubscriptions(0, null, null). Refer to documentation of GetSubscriptions(Int32, String, String) for detailed information.

Exceptions

ExceptionCondition
TIBCO.EMS.ADMIN..::.AdminException if not authorized or an error occurred.

See Also