NamespaceManager.EndGetRules Method (IAsyncResult)

 

Ends an asynchronous request to retrieve all rules from the service namespace.

Namespace:   Microsoft.ServiceBus
Assembly:  Microsoft.ServiceBus (in Microsoft.ServiceBus.dll)

Syntax

public IEnumerable<RuleDescription> EndGetRules(
    IAsyncResult result
)
public:
IEnumerable<RuleDescription^>^ EndGetRules(
    IAsyncResult^ result
)
member EndGetRules : 
        result:IAsyncResult -> IEnumerable<RuleDescription>
Public Function EndGetRules (
    result As IAsyncResult
) As IEnumerable(Of RuleDescription)

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<RuleDescription>

An IEnumerable<T> object that represents the collection of all rules in the service namespace. Returns an empty collection if no rule exists in this service namespace.

See Also

NamespaceManager Class
Microsoft.ServiceBus Namespace

Return to top