/// <summary> /// Appends a wire encoded 32 bit integer to the message content. /// </summary> /// <param name = "i">The 32 bit integer to encode and append.</param> public IInternalOutgoingMessage AppendInt32(Int32 i) { InitCheck(); CompileCheck(); Append(WireEncoding.EncodeInt32(i)); return(this); }
/// <summary> /// Appends a wire encoded 32 bit integer to the message content. /// </summary> /// <param name = "i">The 32 bit integer to encode and append.</param> public IInternalOutgoingMessage AppendInt32(Int32 i) { Append(WireEncoding.EncodeInt32(i)); return(this); }