Пример #1
0
 internal DPE_Client(DPE_ClientType clientType, string clientID, string networkID, string HostName, string AppDomainName)
 {
     this._clientType         = clientType;
     this._ClientID           = clientID;
     this._networkID          = networkID;
     this._STXDSSClientName   = "UNDEFINED";
     this._connectionDAteTime = DateTime.Now;
     if (HostName.Length <= 0)
     {
         this._ClientHostName = "Unknown";
     }
     else
     {
         this._ClientHostName = HostName;
     }
     this._appDomainName = AppDomainName;
 }
            internal void CreateClientRegistration(DPE_ClientType clientType, string clientID, string networkID, string clientName, string clientHostName, string clientAppDomain)
            {
                DPE_Client newClient = new DPE_Client(clientType, clientID, networkID, clientName, clientHostName, clientAppDomain);

                this.AddClient(newClient);
            }