IResXResourceService.GetResXResourceWriter 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
GetResXResourceWriter(String) |
Returns a resx resource writer given resXFullName. |
GetResXResourceWriter(TextWriter, String) |
Returns a resx resource writer given a |
GetResXResourceWriter(String)
Returns a resx resource writer given resXFullName.
public:
System::Resources::IResourceWriter ^ GetResXResourceWriter(System::String ^ resXFullName);
public System.Resources.IResourceWriter GetResXResourceWriter (string resXFullName);
abstract member GetResXResourceWriter : string -> System.Resources.IResourceWriter
Public Function GetResXResourceWriter (resXFullName As String) As IResourceWriter
Parameters
- resXFullName
- String
Creates a reader for the specified file.
Returns
Applies to
GetResXResourceWriter(TextWriter, String)
Returns a resx resource writer given a textWriter
and basepath
.
public:
System::Resources::IResourceWriter ^ GetResXResourceWriter(System::IO::TextWriter ^ textWriter, System::String ^ basePath);
public System.Resources.IResourceWriter GetResXResourceWriter (System.IO.TextWriter textWriter, string basePath);
abstract member GetResXResourceWriter : System.IO.TextWriter * string -> System.Resources.IResourceWriter
Public Function GetResXResourceWriter (textWriter As TextWriter, basePath As String) As IResourceWriter
Parameters
- textWriter
- TextWriter
The TextWriter that is wrapped by the returned IResourceWriter.
- basePath
- String
The path of the resource file.