2 writes to anonymousUriPrefixes
System.ServiceModel (2)
System\ServiceModel\Channels\HttpAnonymousUriPrefixMatcher.cs (2)
24
this.
anonymousUriPrefixes
= new UriPrefixTable<Uri>(objectToClone.anonymousUriPrefixes);
42
this.
anonymousUriPrefixes
= new UriPrefixTable<Uri>(true);
7 references to anonymousUriPrefixes
System.ServiceModel (7)
System\ServiceModel\Channels\HttpAnonymousUriPrefixMatcher.cs (7)
22
if (objectToClone.
anonymousUriPrefixes
!= null)
24
this.anonymousUriPrefixes = new UriPrefixTable<Uri>(objectToClone.
anonymousUriPrefixes
);
40
if (this.
anonymousUriPrefixes
== null)
45
if (!this.
anonymousUriPrefixes
.IsRegistered(new BaseUriWithWildcard(anonymousUriPrefix, HostNameComparisonMode.Exact)))
47
this.
anonymousUriPrefixes
.RegisterUri(anonymousUriPrefix, HostNameComparisonMode.Exact, anonymousUriPrefix);
55
if (this.
anonymousUriPrefixes
== null)
61
return this.
anonymousUriPrefixes
.TryLookupUri(to, HostNameComparisonMode.Exact, out returnValue);