Exemple #1
0
 private PropertyBatchResult(NativeClient.IFabricPropertyBatchResult innerBatch, int failedOperationIndex, Exception failedOperationException, FabricClient client)
 {
     this.innerBatch               = innerBatch;
     this.fabricClient             = client;
     this.FailedOperationIndex     = failedOperationIndex;
     this.FailedOperationException = failedOperationException;
 }
Exemple #2
0
 internal static PropertyBatchResult FromNative(NativeClient.IFabricPropertyBatchResult innerBatch, FabricClient fabricClient)
 {
     if (innerBatch == null)
     {
         return(null);
     }
     else
     {
         var result = new PropertyBatchResult(innerBatch, -1, null, fabricClient);
         return(result);
     }
 }