16 references to GetUI1
System.Messaging (16)
System\Messaging\Message.cs (13)
299
return (AcknowledgeTypes)this.properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_ACKNOWLEDGE);
505
return (properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_AUTHENTICATED) != 0);
1191
return (properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_FIRST_IN_XACT) != 0);
1215
return (properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_LAST_IN_XACT) != 0);
1353
return (MessagePriority)properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_PRIORITY);
1397
return properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_DELIVERY) == NativeMethods.MESSAGE_DELIVERY_RECOVERABLE;
1922
return ((properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_JOURNAL) & NativeMethods.MESSAGE_JOURNAL_DEADLETTER) != 0);
1936
properties.SetUI1(NativeMethods.MESSAGE_PROPID_JOURNAL, (byte)(properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_JOURNAL) & ~NativeMethods.MESSAGE_JOURNAL_DEADLETTER));
1944
properties.SetUI1(NativeMethods.MESSAGE_PROPID_JOURNAL, (byte)(properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_JOURNAL) | NativeMethods.MESSAGE_JOURNAL_DEADLETTER));
2011
return ((properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_JOURNAL) & NativeMethods.MESSAGE_JOURNAL_JOURNAL) != 0);
2025
properties.SetUI1(NativeMethods.MESSAGE_PROPID_JOURNAL, (byte)(properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_JOURNAL) & ~NativeMethods.MESSAGE_JOURNAL_JOURNAL));
2033
properties.SetUI1(NativeMethods.MESSAGE_PROPID_JOURNAL, (byte)(properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_JOURNAL) | NativeMethods.MESSAGE_JOURNAL_JOURNAL));
2062
return (properties.
GetUI1
(NativeMethods.MESSAGE_PROPID_TRACE) != NativeMethods.MESSAGE_TRACE_NONE);
System\Messaging\MessageQueue.cs (3)
301
this.authenticate = (Properties.
GetUI1
(NativeMethods.QUEUE_PROPID_AUTHENTICATE) != NativeMethods.QUEUE_AUTHENTICATE_NONE);
1300
this.useJournaling = (Properties.
GetUI1
(NativeMethods.QUEUE_PROPID_JOURNAL) != NativeMethods.QUEUE_JOURNAL_NONE);
4448
this.isTransactional = (props.
GetUI1
(NativeMethods.QUEUE_PROPID_TRANSACTION) != NativeMethods.QUEUE_TRANSACTIONAL_NONE);