internal IpcClientTransportSink(string channelURI, IpcClientChannel channel)
 {
     string str;
     this.portCache = new ConnectionCache();
     this._tokenImpersonationLevel = TokenImpersonationLevel.Identification;
     this._timeout = 0x3e8;
     this._channel = channel;
     string str2 = IpcChannelHelper.ParseURL(channelURI, out str);
     int startIndex = str2.IndexOf("://") + 3;
     this._portName = str2.Substring(startIndex);
 }
Пример #2
0
        internal IpcClientTransportSink(string channelURI, IpcClientChannel channel)
        {
            string str;

            this.portCache = new ConnectionCache();
            this._tokenImpersonationLevel = TokenImpersonationLevel.Identification;
            this._timeout = 0x3e8;
            this._channel = channel;
            string str2       = IpcChannelHelper.ParseURL(channelURI, out str);
            int    startIndex = str2.IndexOf("://") + 3;

            this._portName = str2.Substring(startIndex);
        }