GSF.ServiceProcess.ServiceHelper.FindConnectedClient C# (CSharp) 메소드

FindConnectedClient() 공개 메소드

Returns the ClientInfo object for the specified clientID.
public FindConnectedClient ( System.Guid clientID ) : ClientInfo
clientID System.Guid ID of the client whose object is to be retrieved.
리턴 ClientInfo
        public ClientInfo FindConnectedClient(Guid clientID)
        {
            lock (m_remoteClients)
            {
                return m_remoteClients.Find(clientInfo => clientInfo.ClientID == clientID);
            }
        }
ServiceHelper