CSharpTest.Net
TryWrite Method
See Also  Example Send Feedback Download Help File
CSharpTest.Net.Library Assembly > CSharpTest.Net.Synchronization Namespace > ILockStrategy Interface : TryWrite Method

timeout

Glossary Item Box

Returns true if the lock was successfully obtained within the timeout specified

Syntax

Visual Basic (Declaration) 
Function TryWrite( _
   ByVal timeout As Integer _
) As Boolean
C# 
bool TryWrite( 
   int timeout
)

Parameters

timeout

Example

Library/Library.Test/LockingTests/TestReaderWriterLocking.cs

C#Copy Code
using (ILockStrategy l = LockFactory.Create())
using (l.Read())
    Assert.IsFalse(l.TryWrite(10));
VB.NETCopy Code
Using l As ILockStrategy = LockFactory.Create()
    Using l.Read()
        Assert.IsFalse(l.TryWrite(10))
    End Using
End Using

Requirements

Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

See Also

Generated with Document! X 2011 by Innovasys