namespace ZB.MOM.WW.MxGateway.Worker.MxAccess; public sealed class RegisteredServerHandle { /// Initializes a new registered server handle. /// MXAccess server handle. /// Client name associated with the handle. public RegisteredServerHandle( int serverHandle, string clientName) { ServerHandle = serverHandle; ClientName = clientName; } /// The MXAccess server handle. public int ServerHandle { get; } /// The client name associated with this server handle. public string ClientName { get; } }