SharpCifs.Smb.SmbComCreateDirectory.WriteBytesWireFormat C# (CSharp) Method

WriteBytesWireFormat() private method

private WriteBytesWireFormat ( byte dst, int dstIndex ) : int
dst byte
dstIndex int
return int
		internal override int WriteBytesWireFormat(byte[] dst, int dstIndex)
		{
			int start = dstIndex;
			dst[dstIndex++] = unchecked(unchecked(0x04));
			dstIndex += WriteString(Path, dst, dstIndex);
			return dstIndex - start;
		}