Apache.NMS.SessionExtensions.DeleteQueue C# (CSharp) Method

DeleteQueue() public static method

Extension function to delete the named destination by parsing the embedded type prefix.
public static DeleteQueue ( this session, string queueName ) : void
session this
queueName string
return void
        public static void DeleteQueue(this ISession session, string queueName)
        {
            SessionUtil.DeleteDestination(session, queueName);
        }