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

EncodeTimestamp() static private method

static private EncodeTimestamp ( byte buf, int &index, short type, long value ) : void
buf byte
index int
type short
value long
return void
		static void EncodeTimestamp (byte[] buf, ref int index, short type, long value)
		{
			EncodeTypeAndLength (buf, ref index, type, 8);
			EncodeInt32 (buf, ref index, (int) (value & 0xffffffff));
			EncodeInt32 (buf, ref index, (int) (value >> 32));
		}