다음을 통해 공유


ResourceManagerStringLocalizerFactory.GetResourcePrefix 메서드

정의

오버로드

GetResourcePrefix(TypeInfo)

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

GetResourcePrefix(String, String)

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

GetResourcePrefix(TypeInfo, String, String)

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

GetResourcePrefix(String, String, String)

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

GetResourcePrefix(TypeInfo)

Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

protected:
 virtual System::String ^ GetResourcePrefix(System::Reflection::TypeInfo ^ typeInfo);
protected virtual string GetResourcePrefix (System.Reflection.TypeInfo typeInfo);
abstract member GetResourcePrefix : System.Reflection.TypeInfo -> string
override this.GetResourcePrefix : System.Reflection.TypeInfo -> string
Protected Overridable Function GetResourcePrefix (typeInfo As TypeInfo) As String

매개 변수

typeInfo
TypeInfo

조회할 리소스의 형식입니다.

반환

리소스 조회를 위한 접두사입니다.

적용 대상

GetResourcePrefix(String, String)

Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

protected:
 virtual System::String ^ GetResourcePrefix(System::String ^ baseResourceName, System::String ^ baseNamespace);
protected virtual string GetResourcePrefix (string baseResourceName, string baseNamespace);
abstract member GetResourcePrefix : string * string -> string
override this.GetResourcePrefix : string * string -> string
Protected Overridable Function GetResourcePrefix (baseResourceName As String, baseNamespace As String) As String

매개 변수

baseResourceName
String

조회할 리소스의 이름입니다.

baseNamespace
String

애플리케이션의 기본 네임스페이스입니다.

반환

리소스 조회를 위한 접두사입니다.

적용 대상

GetResourcePrefix(TypeInfo, String, String)

Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

protected:
 virtual System::String ^ GetResourcePrefix(System::Reflection::TypeInfo ^ typeInfo, System::String ^ baseNamespace, System::String ^ resourcesRelativePath);
protected virtual string GetResourcePrefix (System.Reflection.TypeInfo typeInfo, string? baseNamespace, string? resourcesRelativePath);
abstract member GetResourcePrefix : System.Reflection.TypeInfo * string * string -> string
override this.GetResourcePrefix : System.Reflection.TypeInfo * string * string -> string
Protected Overridable Function GetResourcePrefix (typeInfo As TypeInfo, baseNamespace As String, resourcesRelativePath As String) As String

매개 변수

typeInfo
TypeInfo

조회할 리소스의 형식입니다.

baseNamespace
String

애플리케이션의 기본 네임스페이스입니다.

resourcesRelativePath
String

모든 리소스를 포함하는 폴더입니다.

반환

리소스 조회를 위한 접두사입니다.

설명

"Sample.Controllers.Home" 형식에 대해 resourceRelativePath가 없는 경우 "Sample.Resourcepath.Controllers.Home"을 반환하면 "Sample.Controllers.Home"이 반환됩니다.

적용 대상

GetResourcePrefix(String, String, String)

Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs
Source:
ResourceManagerStringLocalizerFactory.cs

리소스를 조회하는 데 사용되는 리소스 접두사를 가져옵니다.

protected:
 virtual System::String ^ GetResourcePrefix(System::String ^ location, System::String ^ baseName, System::String ^ resourceLocation);
protected virtual string GetResourcePrefix (string location, string baseName, string resourceLocation);
abstract member GetResourcePrefix : string * string * string -> string
override this.GetResourcePrefix : string * string * string -> string
Protected Overridable Function GetResourcePrefix (location As String, baseName As String, resourceLocation As String) As String

매개 변수

location
String

리소스의 일반 위치입니다.

baseName
String

리소스의 기본 이름입니다.

resourceLocation
String

location 내에서 리소스의 위치입니다.

반환

리소스를 조회하는 데 사용되는 리소스 접두사입니다.

적용 대상