10 references to Normaliz
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.Nls.cs (6)
21int length = Interop.Normaliz.IdnToAscii(flags, unicode, count, null, 0); 50int length = Interop.Normaliz.IdnToAscii(flags, unicode, count, output, outputLength); 68int length = Interop.Normaliz.IdnToUnicode(flags, ascii, count, null, 0); 97int length = Interop.Normaliz.IdnToUnicode(flags, ascii, count, output, outputLength); 111(AllowUnassigned ? Interop.Normaliz.IDN_ALLOW_UNASSIGNED : 0) | 112(UseStd3AsciiRules ? Interop.Normaliz.IDN_USE_STD3_ASCII_RULES : 0);
src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Nls.cs (4)
24result = Interop.Normaliz.IsNormalizedString(normalizationForm, pInput, source.Length); 65realLength = Interop.Normaliz.NormalizeString(normalizationForm, pInput, strInput.Length, pDest, buffer.Length); 136realLength = Interop.Normaliz.NormalizeString(normalizationForm, pInput, source.Length, pDest, destination.Length); 179realLength = Interop.Normaliz.NormalizeString(normalizationForm, pInput, source.Length, null, 0);