StringNormalizationExtensions.IsNormalized 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
문자열이 정규화되는지 여부를 나타냅니다.
오버로드
| IsNormalized(String) |
지정된 문자열이 유니코드 정규화 형식 C인지 여부를 나타냅니다. |
| IsNormalized(String, NormalizationForm) |
문자열이 지정된 유니코드 정규화 형식인지 여부를 나타냅니다. |
IsNormalized(String)
지정된 문자열이 유니코드 정규화 형식 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
매개 변수
- valuestrInput
- String
문자열입니다.
반환
value 정규화 형식인 경우 true. 그렇지 않으면 false.
예외
value
null.
value 잘못된 유니코드 문자를 포함합니다.
적용 대상
IsNormalized(String, NormalizationForm)
문자열이 지정된 유니코드 정규화 형식인지 여부를 나타냅니다.
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
매개 변수
- valuestrInput
- String
문자열입니다.
- normalizationForm
- NormalizationForm
유니코드 정규화 양식입니다.
반환
value 정규화 형식인 경우 truenormalizationForm; 그렇지 않으면 false.
- 특성
예외
value
null.
value 잘못된 유니코드 문자를 포함합니다.