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