ResourceManagerStringLocalizerFactory.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create(Type) |
Creates a ResourceManagerStringLocalizer using the Assembly and FullName of the specified Type. |
Create(String, String) |
Creates a ResourceManagerStringLocalizer. |
Create(Type)
Creates a ResourceManagerStringLocalizer using the Assembly and FullName of the specified Type.
public:
virtual Microsoft::Extensions::Localization::IStringLocalizer ^ Create(Type ^ resourceSource);
public Microsoft.Extensions.Localization.IStringLocalizer Create (Type resourceSource);
abstract member Create : Type -> Microsoft.Extensions.Localization.IStringLocalizer
override this.Create : Type -> Microsoft.Extensions.Localization.IStringLocalizer
Public Function Create (resourceSource As Type) As IStringLocalizer
Parameters
Returns
The ResourceManagerStringLocalizer.
Implements
Applies to
Create(String, String)
Creates a ResourceManagerStringLocalizer.
public:
virtual Microsoft::Extensions::Localization::IStringLocalizer ^ Create(System::String ^ baseName, System::String ^ location);
public Microsoft.Extensions.Localization.IStringLocalizer Create (string baseName, string location);
abstract member Create : string * string -> Microsoft.Extensions.Localization.IStringLocalizer
override this.Create : string * string -> Microsoft.Extensions.Localization.IStringLocalizer
Public Function Create (baseName As String, location As String) As IStringLocalizer
Parameters
- baseName
- String
The base name of the resource to load strings from.
- location
- String
The location to load resources from.
Returns
The ResourceManagerStringLocalizer.
Implements
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET