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