MbDotNet.Models.Imposters.Imposter.Imposter C# (CSharp) 메소드

Imposter() 개인적인 메소드

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