TypeNameConverter 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
형식과 문자열 값 간에 변환을 수행합니다. 이 클래스는 상속될 수 없습니다.
public ref class TypeNameConverter sealed : System::Configuration::ConfigurationConverterBase
public sealed class TypeNameConverter : System.Configuration.ConfigurationConverterBase
type TypeNameConverter = class
inherit ConfigurationConverterBase
Public NotInheritable Class TypeNameConverter
Inherits ConfigurationConverterBase
- 상속
예제
다음 예제에서는 사용자 지정 섹션과 연결된 형식을 가져오는 방법을 보여줍니다. 사용자 지정 섹션의 구현은 클래스 참조의 코드 예제를 ConfigurationConverterBase 참조하세요.
using System;
using System.IO;
using System.ComponentModel;
using System.Configuration;
namespace Samples.AspNet
{
public sealed class UsingTypeNameConverter
{
public static void GetTypeName()
{
try
{
CustomSection section =
ConfigurationManager.GetSection("CustomSection")
as CustomSection;
Console.WriteLine("CustomSection type: {0}",
section);
}
catch (System.Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}
Imports System.IO
Imports System.ComponentModel
Imports System.Configuration
NotInheritable Public Class UsingTypeNameConverter
Public Shared Sub GetTypeName()
Try
Dim section As CustomSection = _
ConfigurationManager.GetSection("CustomSection")
Console.WriteLine( _
"CustomSection type: {0}", section)
Catch e As System.Exception
Console.WriteLine(e.Message)
End Try
End Sub
End Class
다음 예제는 이전 예제에서 발췌한 구성입니다.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="CustomSection"
type="Samples.AspNet.CustomSection,
ConfigurationConverters,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null"
allowDefinition="Everywhere"
allowExeDefinition="MachineToApplication"
restartOnExternalChanges="true" />
</configSections>
<CustomSection fileName="default.txt" maxIdleTime="90"
timeDelay="infinite" cdStr="str0, str1" permission="Read"
maxUsers="Infinite"/>
</configuration>
설명
이 형식에는 다른 모든 구성 변환기 형식의 경우와 같은 관련 된 강력한 형식의 속성에서 구성 파일에 문자열을 변환 합니다.
특히 클래스는 TypeNameConverter 구성 형식에 할당된 값을 값으로 Type 변환하고 그 반대로 변환 String 합니다. 참조되는 형식은 연결된 구성을 처리하는 클래스입니다.
생성자
TypeNameConverter() |
TypeNameConverter 클래스의 새 인스턴스를 초기화합니다. |
메서드
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET