MailKit.Security.Ntlm.TargetInfo.EncodeInt32 C# (CSharp) Method

EncodeInt32() static private method

static private EncodeInt32 ( byte buf, int &index, int value ) : void
buf byte
index int
value int
return void
		static void EncodeInt32 (byte[] buf, ref int index, int value)
		{
			buf[index++] = (byte) (value);
			buf[index++] = (byte) (value >> 8);
			buf[index++] = (byte) (value >> 16);
			buf[index++] = (byte) (value >> 24);
		}