Microsoft.WindowsAzure.Commands.Utilities.ServiceBus.ServiceBusClientExtensions.GetNamespace C# (CSharp) Méthode

GetNamespace() public méthode

public GetNamespace ( string name ) : Microsoft.WindowsAzure.Commands.Utilities.ServiceBus.ExtendedServiceBusNamespace
name string
Résultat Microsoft.WindowsAzure.Commands.Utilities.ServiceBus.ExtendedServiceBusNamespace
        public virtual ExtendedServiceBusNamespace GetNamespace(string name)
        {
            if (!Regex.IsMatch(name, ServiceBusConstants.NamespaceNamePattern))
            {
                throw new ArgumentException(string.Format(Resources.InvalidNamespaceName, name), "Name");
            }

            return GetExtendedServiceBusNamespace(name);
        }

Same methods

ServiceBusClientExtensions::GetNamespace ( ) : List