コード例 #1
0
ファイル: Entry.cs プロジェクト: sigcms/Seeger
 public Entry(CallRet ret)
     : base(ret)
 {
     if (OK && !string.IsNullOrEmpty (Response)) {
         try {
             Unmarshal (Response);
         } catch (Exception e) {
             Console.WriteLine (e.ToString ());
             this.Exception = e;
         }
     }
 }
コード例 #2
0
ファイル: ExifRet.cs プロジェクト: liqinghuang/QiniuUWP
		public ExifRet (CallRet ret)
            : base(ret)
		{
			if (!String.IsNullOrEmpty (Response)) {
				try {
					Unmarshal (Response);
				} catch (Exception e) {
					Debug.WriteLine (e.ToString ());
					this.Exception = e;
				}
			}
		}
コード例 #3
0
ファイル: CallRet.cs プロジェクト: Gemini2015/QiniuSDK
		public CallRet (CallRet ret)
		{
			StatusCode = ret.StatusCode;
			Exception = ret.Exception;
			Response = ret.Response;
		}