Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the requested interface of the compiler for the document.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetCompiler ( _
ByRef iid As Guid, _
<OutAttribute> ByRef ppvObj As IntPtr _
) As Integer
'Usage
Dim instance As IDocumentSite
Dim iid As Guid
Dim ppvObj As IntPtr
Dim returnValue As Integer
returnValue = instance.GetCompiler(iid, _
ppvObj)
int GetCompiler(
ref Guid iid,
out IntPtr ppvObj
)
int GetCompiler(
[InAttribute] Guid% iid,
[OutAttribute] IntPtr% ppvObj
)
abstract GetCompiler :
iid:Guid byref *
ppvObj:IntPtr byref -> int
function GetCompiler(
iid : Guid,
ppvObj : IntPtr
) : int
Parameters
- iid
Type: System.Guid%
[in] Requested interface (REFIID).
- ppvObj
Type: System.IntPtr%
[out] The desired interface.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From objext.idl:
HRESULT IDocumentSite::GetCompiler(
[in] REFIID iid,
[out] void** ppvObj
);
.NET Framework Security
- 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.