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; }
public Node(IPEndPoint syncCommPoint, IPEndPoint asyncCommPoint, Constants.LineSpeedType __lineSpeed) { syncCommunicationPoint = syncCommPoint; asyncCommunicationPoint = asyncCommPoint; lineSpeed = __lineSpeed; }
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; }