Exemplo n.º 1
0
        /// <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);
        }
Exemplo n.º 2
0
        /// <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);
        }