Esempio 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;
 }
Esempio 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);
 }