Example #1
0
 internal static void ThrowIfNotCrSuccess(PnpConfigrationResult result)
 {
     if (result != PnpConfigrationResult.CR_SUCCESS)
     {
         throw new PnpConfigrationException(result);
     }
 }
Example #2
0
 public PnpConfigrationException(PnpConfigrationResult result)
 {
     PnpConfigrationResult = result;
 }