コード例 #1
0
 internal QueueDescription(string path, QueueDescriptionXml xml)
 {
     this.xml = xml;
     if (null != xml)
     {
         this.xml.Path = path;
     }
 }
コード例 #2
0
 /// <summary>Initializes a new instance of the
 /// <see cref="T:Microsoft.ServiceBus.Messaging.QueueDescription" /> class with the specified relative path.</summary>
 /// <param name="path">Path of the queue relative to the namespace base address.</param>
 public QueueDescription(string path)
 {
     this.xml = new QueueDescriptionXml(path);
 }