Exemple #1
0
 public Entry(CallRet ret)
     : base(ret)
 {
     if (OK && !string.IsNullOrEmpty (Response)) {
         try {
             Unmarshal (Response);
         } catch (Exception e) {
             Console.WriteLine (e.ToString ());
             this.Exception = e;
         }
     }
 }
Exemple #2
0
		public ExifRet (CallRet ret)
            : base(ret)
		{
			if (!String.IsNullOrEmpty (Response)) {
				try {
					Unmarshal (Response);
				} catch (Exception e) {
					Debug.WriteLine (e.ToString ());
					this.Exception = e;
				}
			}
		}
Exemple #3
0
		public CallRet (CallRet ret)
		{
			StatusCode = ret.StatusCode;
			Exception = ret.Exception;
			Response = ret.Response;
		}