Returns a resx resource reader given a basepath and name.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'宣言
Function GetResXResourceReader ( _
textReader As TextReader, _
useResXDataNodes As Boolean, _
basePath As String _
) As IResourceReader
'使用
Dim instance As IResXResourceService
Dim textReader As TextReader
Dim useResXDataNodes As Boolean
Dim basePath As String
Dim returnValue As IResourceReader
returnValue = instance.GetResXResourceReader(textReader, _
useResXDataNodes, basePath)
IResourceReader GetResXResourceReader(
TextReader textReader,
bool useResXDataNodes,
string basePath
)
IResourceReader^ GetResXResourceReader(
TextReader^ textReader,
bool useResXDataNodes,
String^ basePath
)
function GetResXResourceReader(
textReader : TextReader,
useResXDataNodes : boolean,
basePath : String
) : IResourceReader
Parameters
textReader
Type: System.IO.TextReaderThe TextReader that is wrapped by the returned IResourceReader.
useResXDataNodes
Type: System.BooleanIf this value is true the reader returns one or more ResXDataNodes instead of the object type the resource becomes at runtime in order to figure out which files the resx references
basePath
Type: System.StringThe path of the resource file.
Return Value
Type: System.Resources.IResourceReader
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IResXResourceService Interface