26 references to UriIdnScope
System (26)
net\System\Net\Configuration\IdnElement.cs (8)
18
internal const
UriIdnScope
EnabledDefaultValue =
UriIdnScope
.None;
33
public
UriIdnScope
Enabled
35
get { return (
UriIdnScope
)this[this.enabled]; }
42
new ConfigurationProperty(CommonConfigurationStrings.Enabled, typeof(
UriIdnScope
),
62
return
UriIdnScope
.All;
64
return
UriIdnScope
.None;
66
return
UriIdnScope
.AllExceptIntranet;
net\System\Net\Configuration\UriSection.cs (4)
78
private
UriIdnScope
idnScope;
103
private UriSectionInternal(
UriIdnScope
idnScope, bool iriParsing,
117
internal
UriIdnScope
IdnScope
229
UriIdnScope
idnScope = resultSectionData.IdnScope ?? IdnElement.EnabledDefaultValue;
net\System\Net\Configuration\UriSectionData.cs (2)
15
private
UriIdnScope
? idnScope;
24
public
UriIdnScope
? IdnScope
net\System\Net\Configuration\UriSectionReader.cs (2)
167
sectionData.IdnScope = (
UriIdnScope
)Enum.Parse(typeof(
UriIdnScope
), attributeValue, true);
net\System\URI.cs (10)
224
((s_IdnScope ==
UriIdnScope
.All) || ((s_IdnScope ==
UriIdnScope
.AllExceptIntranet)
234
((s_IdnScope ==
UriIdnScope
.All) || ((s_IdnScope ==
UriIdnScope
.AllExceptIntranet)
956
private static volatile
UriIdnScope
s_IdnScope = IdnElement.EnabledDefaultValue;
2229
if((s_IdnScope !=
UriIdnScope
.None) || m_iriParsing)
3971
if (iriParsing || (s_IdnScope !=
UriIdnScope
.None)){
4045
if ((s_IdnScope !=
UriIdnScope
.None)){
4048
if ((s_IdnScope ==
UriIdnScope
.AllExceptIntranet) && IsIntranet(new string(pString, 0, end))){
4268
if ((s_IdnScope ==
UriIdnScope
.AllExceptIntranet) && IsIntranet(new string(pString, 0, end)))