C# 클래스 System.ComponentModel.ComponentResourceManager

The ComponentResourceManager is a resource manager object that provides simple functionality for enumerating resources for a component or object.
상속: System.Resources.ResourceManager
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

Private Properties

프로퍼티 타입 설명
FillResources object>.SortedList

공개 메소드들

메소드 설명
ApplyResources ( object value, string objectName ) : void

This method examines all the resources for the current culture. When it finds a resource with a key in the format of "[objectName].[property name]" it will apply that resource's value to the corresponding property on the object. If there is no matching property the resource will be ignored.

ApplyResources ( object value, string objectName, CultureInfo culture ) : void

This method examines all the resources for the provided culture. When it finds a resource with a key in the format of "[objectName].[property name]" it will apply that resource's value to the corresponding property on the object. If there is no matching property the resource will be ignored.

ComponentResourceManager ( ) : System
ComponentResourceManager ( Type t ) : System

비공개 메소드들

메소드 설명
FillResources ( CultureInfo culture, ResourceSet &resourceSet ) : object>.SortedList

Recursive routine that creates a resource hashtable populated with resources for culture and all parent cultures.

메소드 상세

ApplyResources() 공개 메소드

This method examines all the resources for the current culture. When it finds a resource with a key in the format of "[objectName].[property name]" it will apply that resource's value to the corresponding property on the object. If there is no matching property the resource will be ignored.
public ApplyResources ( object value, string objectName ) : void
value object
objectName string
리턴 void

ApplyResources() 공개 메소드

This method examines all the resources for the provided culture. When it finds a resource with a key in the format of "[objectName].[property name]" it will apply that resource's value to the corresponding property on the object. If there is no matching property the resource will be ignored.
public ApplyResources ( object value, string objectName, CultureInfo culture ) : void
value object
objectName string
culture System.Globalization.CultureInfo
리턴 void

ComponentResourceManager() 공개 메소드

public ComponentResourceManager ( ) : System
리턴 System

ComponentResourceManager() 공개 메소드

public ComponentResourceManager ( Type t ) : System
t System.Type
리턴 System