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

DeleteTopic() public static method

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