コード例 #1
0
 public void SetQueryFSInformation(QueryFSInformation queryFSInformation, bool isUnicode)
 {
     QueryFSInformationBytes = queryFSInformation.GetBytes(isUnicode);
 }
コード例 #2
0
 public Transaction2QueryFSInformationResponse(byte[] parameters, byte[] data, QueryFSInformationLevel informationLevel, bool isUnicode) : base()
 {
     QueryFSInfo = QueryFSInformation.GetQueryFSInformation(data, informationLevel, isUnicode);
 }
コード例 #3
0
 public QueryFSInformation GetQueryFSInformation(QueryFSInformationLevel informationLevel, bool isUnicode)
 {
     return(QueryFSInformation.GetQueryFSInformation(QueryFSInformationBytes, informationLevel, isUnicode));
 }