Attributes.ReadEventArgs.ReadEventArgs C# (CSharp) Method

ReadEventArgs() public method

public ReadEventArgs ( UInt16 handle, UInt16 offset, UInt16 result, Byte value )
handle System.UInt16
offset System.UInt16
result System.UInt16
value Byte
                    public ReadEventArgs(UInt16 handle, UInt16 offset, UInt16 result, Byte[] value)
                    {
                        this.handle = handle;
                        this.offset = offset;
                        this.result = result;
                        this.value = value;
                    }
                }
ReadEventArgs