Apache.NMS.SessionExtensions.DeleteTopic C# (CSharp) 메소드

DeleteTopic() 공개 정적인 메소드

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
리턴 void
        public static void DeleteTopic(this ISession session, string topicName)
        {
            SessionUtil.DeleteDestination(session, topicName);
        }