StringNormalizationExtensions.IsNormalized Yöntem

Tanım

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

Aşırı Yüklemeler

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)

Source:
StringNormalizationExtensions.cs
Source:
StringNormalizationExtensions.cs
Source:
StringNormalizationExtensions.cs

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 biçimindeyse value C; değilse, false.

Özel durumlar

value, null değeridir.

value geçersiz Unicode karakterler içeriyor.

Şunlara uygulanır

IsNormalized(String, NormalizationForm)

Source:
StringNormalizationExtensions.cs
Source:
StringNormalizationExtensions.cs
Source:
StringNormalizationExtensions.cs

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);
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

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 değeridir.

value geçersiz Unicode karakterler içeriyor.

Şunlara uygulanır