NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ReaderWriterLock.AnyWritersSince

Returns true if there were intermediate writes since the sequence number was obtained. The caller should be a reader or writer for getting meaningful results.

[Visual Basic]
Public Function AnyWritersSince( _
   ByVal seqNum As Integer _
) As Boolean
[C#]
public bool AnyWritersSince(
   int seqNum
);
[C++]
public: bool AnyWritersSince(
   int seqNum
);
[JScript]
public function AnyWritersSince(
   seqNum : int
) : Boolean;

Parameters

seqNum
Sequence number.

Return Value

True if there were intermediate writes since the sequence number was obtained, false otherwise.

Remarks

To be supplied

See Also

ReaderWriterLock Class | ReaderWriterLock Members | System.Threading Namespace