The DequeueResult type exposes the following methods.

Methods

 Public

 Protected
 Instance

 Static
 Declared

 Inherited
 XNA Framework Only

 .NET Compact Framework Only

 MemberDescription
Clone()()()()
Clone this DequeueResult
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetEnumerator()()()()
Implements IEnumerable. This allows DequeueResult to be used in a foreach loop to enumerate its Tuples, like this:

CopyC#
DequeueResult dr = myStreamBaseClient.Dequeue();
foreach (Tuple tuple in dr)
    (...)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetLeadershipStatus()()()()
Returns the StreamBaseURI of the server that produced this DequeueResult.
GetServerURI()()()()
Returns the StreamBaseURI of the server that produced this DequeueResult.
GetStatus()()()()
Return the status of this DequeueResult. DequeueResult.GOOD means the DequeueResult contains tuples.
GetStreamName()()()()
Returns the name of the stream on which tuples were dequeued.
GetStreamProperties()()()()
Return the StreamProperties for this DequeueResult
GetTupleCount()()()()
Returns the number of tuples dequeued.
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
ToString()()()()
Returns a string that represents the current object.
(Inherited from Object.)

See Also