Exemplo n.º 1
0
 public MessageQueueInstaller()
 {
     this.category           = Guid.Empty;
     this.encryptionRequired = System.Messaging.EncryptionRequired.Optional;
     this.label = string.Empty;
     this.maximumJournalSize = 0xffffffffL;
     this.maximumQueueSize   = 0xffffffffL;
     this.multicastAddress   = string.Empty;
     this.path = string.Empty;
 }
Exemplo n.º 2
0
 public MessageQueueInstaller(MessageQueue componentToCopy)
 {
     this.category           = Guid.Empty;
     this.encryptionRequired = System.Messaging.EncryptionRequired.Optional;
     this.label = string.Empty;
     this.maximumJournalSize = 0xffffffffL;
     this.maximumQueueSize   = 0xffffffffL;
     this.multicastAddress   = string.Empty;
     this.path = string.Empty;
     this.InternalCopyFromComponent(componentToCopy);
 }