StringNormalizationExtensions.IsNormalized Method
Definition
Indicates whether a string is normalized.
Overloads
IsNormalized(String) |
Indicates whether the specified string is in Unicode normalization form C. |
IsNormalized(String, NormalizationForm) |
Indicates whether a string is in a specified Unicode normalization form. |
IsNormalized(String)
Indicates whether the specified string is in Unicode normalization form C.
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
Parameters
- valuestrInput
- String
A string.
Returns
true
if value
is in normalization form C; otherwise, false
.
Exceptions
value
is null
.
value
contains invalid Unicode characters.
Applies to
IsNormalized(String, NormalizationForm)
Indicates whether a string is in a specified Unicode normalization form.
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
Parameters
- valuestrInput
- String
A string.
- normalizationForm
- NormalizationForm
A Unicode normalization form.
Returns
true
if value
is in normalization form normalizationForm
; otherwise, false
.
- Attributes
Exceptions
value
is null
.
value
contains invalid Unicode characters.