Class ClientThreadRepository
Inheritance
System.Object
ClientThreadRepository
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: AltV.Net.EntitySync.dll
Syntax
public class ClientThreadRepository : IClientThreadRepository
Fields
|
Improve this Doc
View Source
Mutex
Declaration
public readonly object Mutex
Field Value
Type |
Description |
System.Object |
|
Methods
|
Improve this Doc
View Source
Add(IClient)
Declaration
public void Add(IClient client)
Parameters
Type |
Name |
Description |
IClient |
client |
|
|
Improve this Doc
View Source
GetAll()
Declaration
public IEnumerable<IClient> GetAll()
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<IClient> |
|
|
Improve this Doc
View Source
Remove(IClient)
Declaration
public IClient Remove(IClient client)
Parameters
Type |
Name |
Description |
IClient |
client |
|
Returns
|
Improve this Doc
View Source
Remove(String)
Declaration
public IClient Remove(string token)
Parameters
Type |
Name |
Description |
System.String |
token |
|
Returns
|
Improve this Doc
View Source
Replace(IClient)
Declaration
public void Replace(IClient client)
Parameters
Type |
Name |
Description |
IClient |
client |
|
|
Improve this Doc
View Source
Replace(IClient, IClient)
Declaration
public void Replace(IClient client, IClient oldClient)
Parameters
|
Improve this Doc
View Source
TryGet(String, out IClient)
Declaration
public bool TryGet(string token, out IClient client)
Parameters
Type |
Name |
Description |
System.String |
token |
|
IClient |
client |
|
Returns
Type |
Description |
System.Boolean |
|
Implements