Gurux.DLMS.GXDLMSXmlSettings.GXDLMSXmlSettings C# (CSharp) Method

GXDLMSXmlSettings() public method

Constructor.
public GXDLMSXmlSettings ( TranslatorOutputType type, bool numericsAsHex, bool hex, int>.SortedList list ) : Gurux.DLMS.Enums
type TranslatorOutputType
numericsAsHex bool
hex bool
list int>.SortedList
return Gurux.DLMS.Enums
        public GXDLMSXmlSettings(TranslatorOutputType type,
                                 bool numericsAsHex, bool hex, SortedList<string, int> list)
        {
            OutputType = type;
            showNumericsAsHex = numericsAsHex;
            showStringAsHex = hex;
            settings.InterfaceType = InterfaceType.PDU;
            settings.Cipher = new GXCiphering(ASCIIEncoding.ASCII.GetBytes("ABCDEFGH"));
            tags = list;
        }