Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpedyc.Token.Token C# (CSharp) Méthode

Token() public méthode

public Token ( int len, int code, int val, int type, int vbase, string prefix ) : System
len int
code int
val int
type int
vbase int
prefix string
Résultat System
        public Token(int len, int code, int val, int type, int vbase, string prefix)
        {
            Len = len;
            BitPrefix = prefix;
            ValueBits = val;
            Code = code;
            Type = type;
            Vbase = vbase;
        }
Token