コード例 #1
0
 public Resource(ulong __resourceID, Constants.ResourceType __type, uint __tokens, long __size, 
     string __description, string __name, string __location, InformationEntropy[] __IE, object __data)
 {
     header = new ResourceHeader(__resourceID, __type, __tokens, __size, __description, __name, __location);
     IE = __IE;
     data = __data;
 }
コード例 #2
0
 public Node(IPEndPoint syncCommPoint, IPEndPoint asyncCommPoint, Constants.LineSpeedType __lineSpeed)
 {
     syncCommunicationPoint = syncCommPoint;
     asyncCommunicationPoint = asyncCommPoint;
     lineSpeed = __lineSpeed;
 }
コード例 #3
0
 public ResourceHeader(ulong __resourceID, Constants.ResourceType __type, uint __tokens, long __size, 
     string __description, string __name, string __location)
 {
     resourceID = __resourceID;
     type = __type;
     tokens = __tokens;
     size = __size;
     description = __description;
     name = __name;
     location = __location;
 }