コード例 #1
0
ファイル: Networking.cs プロジェクト: xarinatan/CedLib
 public CedLibContentheader(long _ContentLength, CedLibContenttype _ContentType, CedLibProtocolVersion _CedLibProtocolVersion, string _FileSum, string _FileName)
 {
     ContentLength = _ContentLength;
     ContentType = _ContentType;
     CedLibProtocolVersion = _CedLibProtocolVersion;
     FileSum = _FileSum;
     FileName = _FileName;
 }
コード例 #2
0
ファイル: Networking.cs プロジェクト: xarinatan/CedLib
 public CedLibContentheader(long _ContentLength, CedLibContenttype _ContentType, CedLibProtocolVersion _CedLibProtocolVersion)
 {
     ContentLength = _ContentLength;
     ContentType = _ContentType;
     CedLibProtocolVersion = _CedLibProtocolVersion;
 }