IHttpSessionState.IsSynchronized Property

 

Gets a value indicating whether access to the collection of session-state values is synchronized (thread safe).

Namespace:   System.Web.SessionState
Assembly:  System.Web (in System.Web.dll)

ReadOnly Property IsSynchronized As Boolean

Property Value

Type: System.Boolean

true if access to the collection is synchronized (thread safe); otherwise, false.

The following code example implements the IsSynchronized property of the IHttpSessionState interface.

Public ReadOnly Property IsSynchronized As Boolean Implements IHttpSessionState.IsSynchronized    
  Get
    Return False
  End Get
End Property

.NET Framework
Available since 2.0
Return to top
Show: