Converts a unique ID to sequence number. Returns the sequence number of the specified message, or null (Nothing in VB.NET) if not found.
public Nullable<int> GetMessageSequenceNumber(
string uniqueId
)
Public Function GetMessageSequenceNumber( _
ByVal uniqueId As String _
) As Nullable(Of Integer)
public:
Nullable<int> GetMessageSequenceNumber(
String^ uniqueId
);
Parameters
- uniqueId
- Unique ID of the message.
Return Value
Sequence number of the specified message, or null (Nothing in VB.NET) if not found.