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

GXDLMSNotify() public method

Constructor
public GXDLMSNotify ( bool useLogicalNameReferencing, int clientAddress, int serverAddress, InterfaceType interfaceType ) : Gurux.DLMS.Enums
useLogicalNameReferencing bool Is Logical or short name referencing used.
clientAddress int Client address. Default is 0x10
serverAddress int
interfaceType InterfaceType Interface type. Default is general.
return Gurux.DLMS.Enums
        public GXDLMSNotify(bool useLogicalNameReferencing,
            int clientAddress, int serverAddress, InterfaceType interfaceType)
        {
            Settings = new GXDLMSSettings(true);
            Settings.UseLogicalNameReferencing = useLogicalNameReferencing;
            Settings.InterfaceType = interfaceType;
            Settings.ServerAddress = serverAddress;
            Settings.ClientAddress = clientAddress;
        }