MbDotNet.Models.Imposters.Imposter.Imposter C# (CSharp) Method

Imposter() private method

private Imposter ( int port, Protocol protocol, string name ) : System.Collections.Generic
port int
protocol Protocol
name string
return System.Collections.Generic
        public Imposter(int port, Protocol protocol, string name)
        {
            Port = port;
            Protocol = protocol.ToString().ToLower();
            Name = name;
        }
Imposter