コード例 #1
0
ファイル: BatchCommand.cs プロジェクト: uwascan/marten
 public bool HasExceptionTransforms()
 {
     return(ExceptionTransforms.Any(x => x != null));
 }
コード例 #2
0
ファイル: BatchCommand.cs プロジェクト: uwascan/marten
 public void AddCall(IStorageOperation call, ICallback callback = null, IExceptionTransform exceptionTransform = null)
 {
     Calls.Add(call);
     Callbacks.Add(callback);
     ExceptionTransforms.Add(exceptionTransform);
 }