BitSharp.Network.Domain.VersionPayload.VersionPayload C# (CSharp) 메소드

VersionPayload() 공개 메소드

public VersionPayload ( UInt32 ProtocolVersion, System.UInt64 ServicesBitfield, DateTimeOffset Time, NetworkAddress RemoteAddress, NetworkAddress LocalAddress, System.UInt64 Nonce, string UserAgent, UInt32 StartBlockHeight, bool Relay ) : System
ProtocolVersion System.UInt32
ServicesBitfield System.UInt64
Time DateTimeOffset
RemoteAddress NetworkAddress
LocalAddress NetworkAddress
Nonce System.UInt64
UserAgent string
StartBlockHeight System.UInt32
Relay bool
리턴 System
        public VersionPayload(UInt32 ProtocolVersion, UInt64 ServicesBitfield, DateTimeOffset Time, NetworkAddress RemoteAddress, NetworkAddress LocalAddress, UInt64 Nonce, string UserAgent, UInt32 StartBlockHeight, bool Relay)
        {
            this.ProtocolVersion = ProtocolVersion;
            this.ServicesBitfield = ServicesBitfield;
            this.Time = Time;
            this.RemoteAddress = RemoteAddress;
            this.LocalAddress = LocalAddress;
            this.Nonce = Nonce;
            this.UserAgent = UserAgent;
            this.StartBlockHeight = StartBlockHeight;
            this.Relay = Relay;
        }