StringNormalizationExtensions.IsNormalized Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt an, ob eine Zeichenfolge normalisiert wurde
Überlädt
IsNormalized(String) |
Gibt an, ob diese angegebene Zeichenfolge in der Unicode-Normalisierungsform C vorliegt. |
IsNormalized(String, NormalizationForm) |
Gibt an, ob eine Zeichenfolge in einer angegebenen Unicode-Normalisierungsform vorliegt. |
IsNormalized(String)
Gibt an, ob diese angegebene Zeichenfolge in der Unicode-Normalisierungsform C vorliegt.
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ value);
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ strInput);
public static bool IsNormalized (this string value);
public static bool IsNormalized (this string strInput);
static member IsNormalized : string -> bool
static member IsNormalized : string -> bool
<Extension()>
Public Function IsNormalized (value As String) As Boolean
<Extension()>
Public Function IsNormalized (strInput As String) As Boolean
Parameter
- valuestrInput
- String
Eine Zeichenfolge.
Gibt zurück
true
, wenn value
in der Normalisierungsform C vorliegt; andernfalls false
.
Ausnahmen
value
ist null
.
value
enthält ungültige Unicodezeichen.
Gilt für:
IsNormalized(String, NormalizationForm)
Gibt an, ob eine Zeichenfolge in einer angegebenen Unicode-Normalisierungsform vorliegt.
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ value, System::Text::NormalizationForm normalizationForm);
public:
[System::Runtime::CompilerServices::Extension]
static bool IsNormalized(System::String ^ strInput, System::Text::NormalizationForm normalizationForm);
[System.Security.SecurityCritical]
public static bool IsNormalized (this string value, System.Text.NormalizationForm normalizationForm);
public static bool IsNormalized (this string strInput, System.Text.NormalizationForm normalizationForm);
[<System.Security.SecurityCritical>]
static member IsNormalized : string * System.Text.NormalizationForm -> bool
static member IsNormalized : string * System.Text.NormalizationForm -> bool
<Extension()>
Public Function IsNormalized (value As String, normalizationForm As NormalizationForm) As Boolean
<Extension()>
Public Function IsNormalized (strInput As String, normalizationForm As NormalizationForm) As Boolean
Parameter
- valuestrInput
- String
Eine Zeichenfolge.
- normalizationForm
- NormalizationForm
Eine Unicode-Normalisierungsform.
Gibt zurück
true
, wenn value
in Normalisierungsform normalizationForm
vorliegt; andernfalls false
.
- Attribute
Ausnahmen
value
ist null
.
value
enthält ungültige Unicodezeichen.