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

EncodeTypeAndLength() static private method

static private EncodeTypeAndLength ( byte buf, int &index, short type, short length ) : void
buf byte
index int
type short
length short
return void
		static void EncodeTypeAndLength (byte[] buf, ref int index, short type, short length)
		{
			buf[index++] = (byte) (type);
			buf[index++] = (byte) (type >> 8);
			buf[index++] = (byte) (length);
			buf[index++] = (byte) (length >> 8);
		}