Gurux.DLMS.Objects.GXDLMSPppSetup.GetValues C# (CSharp) Method

GetValues() public method

public GetValues ( ) : object[]
return 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 };
        }