socks5.Socks.SocksRequest.SocksRequest C# (CSharp) Method

SocksRequest() public method

public SocksRequest ( StreamTypes type, AddressType addrtype, string address, int port ) : System
type StreamTypes
addrtype AddressType
address string
port int
return System
        public SocksRequest(StreamTypes type, AddressType addrtype, string address, int port)
        {
            Type = addrtype;
            StreamType = type;
            Address = address;
            Port = port;
            Error = SocksError.Granted;
            IPAddress p = this.IP; //get Error on the stack.
        }