2 writes to Priority
System.ServiceModel (2)
System\ServiceModel\MsmqIntegration\MsmqIntegrationInputMessage.cs (1)
107property.Priority = (System.Messaging.MessagePriority)this.priority.Value;
System\ServiceModel\MsmqIntegration\MsmqMessage.cs (1)
113set { this.property.Priority = value; }
3 references to Priority
System.ServiceModel (3)
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
235if (property.Priority.HasValue) 236this.priority = new ByteProperty(this, UnsafeNativeMethods.PROPID_M_PRIORITY, (byte)property.Priority.Value);
System\ServiceModel\MsmqIntegration\MsmqMessage.cs (1)
112get { return this.property.Priority; }