32 references to MQInfo
System.Messaging (32)
System\Messaging\Cursor.cs (1)
22int status = SafeNativeMethods.MQCreateCursor(queue.MQInfo.ReadHandle, out result);
System\Messaging\MessageEnumerator.cs (1)
90int status = SafeNativeMethods.MQCreateCursor(this.owner.MQInfo.ReadHandle, out result);
System\Messaging\MessageQueue.cs (30)
376return MQInfo.CanRead; 400return MQInfo.CanWrite; 1221return MQInfo.ReadHandle.DangerousGetHandle(); 1280return MQInfo.Transactional; 1341return MQInfo.WriteHandle.DangerousGetHandle(); 2542MessageQueueHandle handle = MQInfo.ReadHandle; 2555MQInfo.BindToThreadPool(); 2622int status = SafeNativeMethods.MQCreateCursor(this.MQInfo.ReadHandle, out cursorHandle); 3932this.owner.MQInfo.Close(); 3993int status = UnsafeNativeMethods.MQPurgeQueue(MQInfo.ReadHandle); 3996MQInfo.Close(); 3997status = UnsafeNativeMethods.MQPurgeQueue(MQInfo.ReadHandle); 4022int status = UnsafeNativeMethods.MQSendMessage(MQInfo.WriteHandle, properties, transaction); 4025MQInfo.Close(); 4026status = UnsafeNativeMethods.MQSendMessage(MQInfo.WriteHandle, properties, transaction); 4034int status = UnsafeNativeMethods.MQSendMessage(MQInfo.WriteHandle, properties, transaction); 4037MQInfo.Close(); 4038status = UnsafeNativeMethods.MQSendMessage(MQInfo.WriteHandle, properties, transaction); 4064int status = UnsafeNativeMethods.MQReceiveMessage(MQInfo.ReadHandle, timeout, action, properties, overlapped, receiveCallback, cursorHandle, transaction); 4067MQInfo.Close(); //invalidate cached ReadHandle, so it will be refreshed on next access 4068status = UnsafeNativeMethods.MQReceiveMessage(MQInfo.ReadHandle, timeout, action, properties, overlapped, receiveCallback, cursorHandle, transaction); 4076int status = UnsafeNativeMethods.MQReceiveMessage(MQInfo.ReadHandle, timeout, action, properties, overlapped, receiveCallback, cursorHandle, transaction); 4079MQInfo.Close(); //invalidate cached ReadHandle, so it will be refreshed on next access 4080status = UnsafeNativeMethods.MQReceiveMessage(MQInfo.ReadHandle, timeout, action, properties, overlapped, receiveCallback, cursorHandle, transaction); 4103int status = UnsafeNativeMethods.MQReceiveMessageByLookupId(MQInfo.ReadHandle, lookupId, action, properties, overlapped, receiveCallback, transaction); 4106MQInfo.Close(); //invalidate cached ReadHandle, so it will be refreshed on next access 4107status = UnsafeNativeMethods.MQReceiveMessageByLookupId(MQInfo.ReadHandle, lookupId, action, properties, overlapped, receiveCallback, transaction); 4117int status = UnsafeNativeMethods.MQReceiveMessageByLookupId(MQInfo.ReadHandle, lookupId, action, properties, overlapped, receiveCallback, transaction); 4120MQInfo.Close(); //invalidate cached ReadHandle, so it will be refreshed on next access 4121status = UnsafeNativeMethods.MQReceiveMessageByLookupId(MQInfo.ReadHandle, lookupId, action, properties, overlapped, receiveCallback, transaction);