Example #1
0
 private static bool TryReadValues(string[] values, out MultiValueKey key, out RmsLicenseStoreInfo value)
 {
     if (RmsLicenseStoreInfo.TryParse(values, out value))
     {
         key = new MultiValueKey(new object[]
         {
             value.TenantId,
             value.Url
         });
         return(true);
     }
     key = null;
     return(false);
 }