Exemplo n.º 1
0
		public ResultImage(AppConfiguration appConfig, RpcProfile profile)
			: this(appConfig)
		{
			ExecCpuTime = profile.ExecutionCpuTime;
			DownloadTime = profile.DonwloadTime;
			UploadTime = profile.UploadTime;
			DownloadSize = profile.DownloadSize;
			UploadSize = profile.UploadSize;
		}
Exemplo n.º 2
0
		public RpcClient()
		{
			profile = new RpcProfile();
			this.server = null;
		}
Exemplo n.º 3
0
		public ResultImage(AppConfiguration appConfig, RpcProfile profile, long totalTime)
			: this(appConfig, profile)
		{
			TotalTime = totalTime;
		}
Exemplo n.º 4
0
		public ResultImage()
		{
			AppConfig = new AppConfiguration();
			RpcProfile = new RpcProfile();
			Date = DateTime.Now;
		}