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

GXDLMSSNParameters() private method

Constructor.
private GXDLMSSNParameters ( GXDLMSSettings forSettings, Command forCommand, int forCount, byte forCommandType, GXByteBuffer forAttributeDescriptor, GXByteBuffer forData ) : System
forSettings GXDLMSSettings DLMS settings.
forCommand Command Command.
forCount int
forCommandType byte Command type.
forAttributeDescriptor GXByteBuffer
forData GXByteBuffer Attribute descriptor
return System
        internal GXDLMSSNParameters(GXDLMSSettings forSettings, Command forCommand,  int forCount, 
            byte forCommandType,
           GXByteBuffer forAttributeDescriptor, GXByteBuffer forData)
        {
            settings = forSettings;
            blockIndex = (UInt16)settings.BlockIndex;
            command = forCommand;
            count = forCount;
            requestType = forCommandType;
            attributeDescriptor = forAttributeDescriptor;
            data = forData;
            time = DateTime.MinValue;
            multipleBlocks = false;
        }
    }
GXDLMSSNParameters