1 write to properties
System.Messaging (1)
System\Messaging\MessageQueue.cs (1)
1098this.properties = new QueuePropertyVariants();
8 references to properties
System.Messaging (8)
System\Messaging\MessageQueue.cs (8)
337this.basePriority = properties.GetI2(NativeMethods.QUEUE_PROPID_BASEPRIORITY); 482this.createTime = time.AddSeconds(properties.GetI4(NativeMethods.QUEUE_PROPID_CREATE_TIME)).ToLocalTime(); 599this.encryptionLevel = properties.GetUI4(NativeMethods.QUEUE_PROPID_PRIV_LEVEL); 795this.lastModifyTime = time.AddSeconds(properties.GetI4(NativeMethods.QUEUE_PROPID_MODIFY_TIME)).ToLocalTime(); 867this.journalSize = (long)((uint)properties.GetUI4(NativeMethods.QUEUE_PROPID_JOURNAL_QUOTA)); 905this.queueSize = (long)((uint)properties.GetUI4(NativeMethods.QUEUE_PROPID_QUOTA)); 1097if (this.properties == null) 1100return this.properties;