SharpCifs.Smb.SmbComCreateDirectory.WriteBytesWireFormat C# (CSharp) Метод

WriteBytesWireFormat() приватный Метод

private WriteBytesWireFormat ( byte dst, int dstIndex ) : int
dst byte
dstIndex int
Результат 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;
		}