BitSharp.Network.Domain.Message.Message C# (CSharp) Method

Message() public method

public Message ( UInt32 Magic, string Command, UInt32 PayloadSize, UInt32 PayloadChecksum, ImmutableArray Payload ) : System
Magic System.UInt32
Command string
PayloadSize System.UInt32
PayloadChecksum System.UInt32
Payload ImmutableArray
return System
        public Message(UInt32 Magic, string Command, UInt32 PayloadSize, UInt32 PayloadChecksum, ImmutableArray<byte> Payload)
        {
            this.Magic = Magic;
            this.Command = Command;
            this.PayloadSize = PayloadSize;
            this.PayloadChecksum = PayloadChecksum;
            this.Payload = Payload;
        }
    }
Message