Microsoft.WindowsAzure.CAT.ServiceBusExplorer.ListenerControl.RequiresSession C# (CSharp) Method

RequiresSession() private method

private RequiresSession ( ) : bool
return bool
        private bool RequiresSession()
        {
            var description = entityDescription as QueueDescription;
            if (description != null )
            {
                return description.RequiresSession;
            }
            var subscriptionDescription = entityDescription as SubscriptionDescription;
            if (subscriptionDescription != null)
            {
                return subscriptionDescription.RequiresSession;
            }
            return false;
        }
ListenerControl