PeekById(String,TimeSpan) Method
Peeks the message whose message identifier matches the id parameter. Waits until the message appears in the queue or a time-out occurs.
Syntax
'Declaration Public Overloads Function PeekById( _ ByVal id As String, _ ByVal timeout As TimeSpan _ ) As Message
'Usage Dim instance As MessageQueue Dim id As String Dim timeout As TimeSpan Dim value As Message value = instance.PeekById(id, timeout)
Parameters
- id
- The Id of the message to peek.
- timeout
- A System.TimeSpan that indicates the time to wait until a new message is available for inspection.
Return Value
Exceptions
Exception | Description |
---|---|
System.ArgumentNullException | The id parameter is null. |
System.ArgumentException | The value specified for the timeout parameter is not valid, possibly timeout is less than System.TimeSpan.Zero or greater than InfiniteTimeout. |
System.InvalidOperationException | The message with the specified id does not exist in the queue and did not arrive before the period specified by the timeout parameter expired. |
MessageQueueException | An error occurred when accessing a Message Queuing method. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also