IResXResourceService Interface
An abstraction layer that lets clients control the resx readers and writers used within Visual Studio.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Public Interface IResXResourceService
public interface IResXResourceService
public interface class IResXResourceService
type IResXResourceService = interface end
public interface IResXResourceService
Methods
Name | Description | |
---|---|---|
GetResXResourceReader(String, Boolean) | Returns a resx resource reader that matches a given a resXFullName. | |
GetResXResourceReader(TextReader, Boolean, String) | Returns a resx resource reader given a basepath and name. | |
GetResXResourceWriter(String) | Returns a resx resource writer given resXFullName. | |
GetResXResourceWriter(TextWriter, String) | Returns a resx resource writer given a textWriter and basepath. |
Top