MsgPack.MsgPackWriter.Write C# (CSharp) Method

Write() public method

public Write ( System.Guid x ) : void
x System.Guid
return void
        public void Write(Guid x)
        {
            Write(x.ToString("N"));
        }

Same methods

MsgPackWriter::Write ( bool x ) : void
MsgPackWriter::Write ( byte x ) : void
MsgPackWriter::Write ( char x ) : void
MsgPackWriter::Write ( double x ) : void
MsgPackWriter::Write ( float x ) : void
MsgPackWriter::Write ( int x ) : void
MsgPackWriter::Write ( long x ) : void
MsgPackWriter::Write ( sbyte x ) : void
MsgPackWriter::Write ( short x ) : void
MsgPackWriter::Write ( string x ) : void
MsgPackWriter::Write ( string x, bool highProbAscii ) : void
MsgPackWriter::Write ( string x, byte buf ) : void
MsgPackWriter::Write ( string x, byte buf, bool highProbAscii ) : void
MsgPackWriter::Write ( uint x ) : void
MsgPackWriter::Write ( ulong x ) : void
MsgPackWriter::Write ( ushort x ) : void

Usage Example

Example #1
0
 internal static void Pack(MsgPackWriter writer, string x)
 {
     if (x == null)
     {
         writer.WriteNil();
     }
     else
     {
         writer.Write(x, false);
     }
 }
All Usage Examples Of MsgPack.MsgPackWriter::Write