1 instantiation of Restrictions
System.Messaging (1)
System\Messaging\MessageQueueCriteria.cs (1)
252
restrictions = new
Restrictions
(size);
10 references to Restrictions
System.Messaging (10)
System\Messaging\Interop\UnsafeNativeMethods.cs (2)
121
private static extern int IntMQLocateBegin(string context,
Restrictions
.MQRESTRICTION Restriction, Columns.MQCOLUMNSET columnSet, IntPtr sortSet, out LocatorHandle enumHandle);
122
public static int MQLocateBegin(string context,
Restrictions
.MQRESTRICTION Restriction, Columns.MQCOLUMNSET columnSet, out LocatorHandle enumHandle)
System\Messaging\MessageQueueCriteria.cs (8)
36
private
Restrictions
restrictions;
234
internal
Restrictions
.MQRESTRICTION Reference
254
restrictions.AddI4(NativeMethods.QUEUE_PROPID_CREATE_TIME,
Restrictions
.PRGT, ConvertTime(this.createdAfter));
256
restrictions.AddI4(NativeMethods.QUEUE_PROPID_CREATE_TIME,
Restrictions
.PRLE, ConvertTime(this.createdBefore));
258
restrictions.AddString(NativeMethods.QUEUE_PROPID_LABEL,
Restrictions
.PREQ, this.label);
260
restrictions.AddI4(NativeMethods.QUEUE_PROPID_MODIFY_TIME,
Restrictions
.PRGT, ConvertTime(this.modifiedAfter));
262
restrictions.AddI4(NativeMethods.QUEUE_PROPID_MODIFY_TIME,
Restrictions
.PRLE, ConvertTime(this.modifiedBefore));
264
restrictions.AddGuid(NativeMethods.QUEUE_PROPID_TYPE,
Restrictions
.PREQ, this.category);