IVsMSBuildTaskFileManager.GetFileContents Method

Gets the contents of a specified file.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.9.0 (in Microsoft.VisualStudio.Shell.Interop.9.0.dll)

Syntax

'宣言
Function GetFileContents ( _
    wszFilename As String, _
    <OutAttribute> ByRef pbstrFileContents As String _
) As Integer
'使用
Dim instance As IVsMSBuildTaskFileManager
Dim wszFilename As String
Dim pbstrFileContents As String
Dim returnValue As Integer

returnValue = instance.GetFileContents(wszFilename, _
    pbstrFileContents)
int GetFileContents(
    string wszFilename,
    out string pbstrFileContents
)
int GetFileContents(
    [InAttribute] String^ wszFilename, 
    [OutAttribute] String^% pbstrFileContents
)
function GetFileContents(
    wszFilename : String, 
    pbstrFileContents : String
) : int

Parameters

  • pbstrFileContents
    Type: System.String%

    [out] The contents of the file.

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

This method returns the contents of the specified file based on what is in memory or what is on disk if not in-memory.

COM Signature

From vsshell90.idl:

HRESULT GetFileContents(
    [in] LPCOLESTR wszFilename,
    [out, retval] BSTR* pbstrFileContents
);

Permissions

See Also

Reference

IVsMSBuildTaskFileManager Interface

IVsMSBuildTaskFileManager Members

Microsoft.VisualStudio.Shell.Interop Namespace