Gurux.DLMS.Objects.GXDLMSPppSetup.GetValues C# (CSharp) Метод

GetValues() публичный Метод

public GetValues ( ) : object[]
Результат object[]
        public override object[] GetValues()
        {
            string str = "";
            if (UserName != null)
            {
                str = ASCIIEncoding.ASCII.GetString(UserName);
            }
            if (Password != null)
            {
                str += " " + ASCIIEncoding.ASCII.GetString(Password);
            }
            return new object[] { LogicalName, PHYReference, LCPOptions, IPCPOptions, str };
        }