StringNormalizationExtensions.IsNormalized Yöntem

Tanım

Bir dizenin normalleştirilip normalleştirilmediğini gösterir.

Aşırı Yüklemeler

Name Description
IsNormalized(String)

Belirtilen dizenin C Unicode normalleştirme formunda olup olmadığını gösterir.

IsNormalized(String, NormalizationForm)

Bir dizenin belirtilen Unicode normalleştirme formunda olup olmadığını gösterir.

IsNormalized(String)

Belirtilen dizenin C Unicode normalleştirme formunda olup olmadığını gösterir.

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

Parametreler

valuestrInput
String

Bir dize.

Döndürülenler

true normalleştirme formundaysa value C; değilse, false.

Özel durumlar

value, null'e eşittir.

value geçersiz Unicode karakterleri içeriyor.

Şunlara uygulanır

IsNormalized(String, NormalizationForm)

Bir dizenin belirtilen Unicode normalleştirme formunda olup olmadığını gösterir.

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);
[<System.Security.SecurityCritical>]
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

Parametreler

valuestrInput
String

Bir dize.

normalizationForm
NormalizationForm

Unicode normalleştirme formu.

Döndürülenler

true normalleştirme biçimindeyse valuenormalizationForm; değilse, false.

Öznitelikler

Özel durumlar

value, null'e eşittir.

value geçersiz Unicode karakterleri içeriyor.

Şunlara uygulanır