Skip to content

Commit

Permalink
AnyOf<string, StringPattern>[] GetPatterns();
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Oct 15, 2021
1 parent 85985b1 commit 01533a0
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#if !NETSTANDARD1_3
using System;
using System.Globalization;
using System.IdentityModel.Tokens.Jwt;
using System.Text.RegularExpressions;
using AnyOfTypes;
using Microsoft.IdentityModel.Protocols;
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
using Microsoft.IdentityModel.Tokens;
using WireMock.Matchers;
using WireMock.Models;

namespace WireMock.Authentication
{
Expand All @@ -33,9 +34,9 @@ public AzureADAuthenticationMatcher(string tenant, string audience)

public bool ThrowException => false;

public string[] GetPatterns()
public AnyOf<string, StringPattern>[] GetPatterns()
{
throw new NotImplementedException();
return new AnyOf<string, StringPattern>[0];
}

public double IsMatch(string input)
Expand Down

0 comments on commit 01533a0

Please sign in to comment.