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;
		}