Exemplo n.º 1
0
 public NetworkCredential GetCredential(Uri uri, string authType)
 {
     return(authType == null || !AuthTypes.Any() || AuthTypes.Any(x => StringComparer.OrdinalIgnoreCase.Equals(x, authType))
         ? InnerCredential.GetCredential(uri, authType)
         : null);
 }