IExtenderSite.GetObject Method
Returns an interface or object that is late-bound to the DTE object and that can be accessed by name at runtime.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Function GetObject ( _
Name As String _
) As Object
Object GetObject(
string Name
)
Object^ GetObject(
[InAttribute] String^ Name
)
abstract GetObject :
Name:string -> Object
function GetObject(
Name : String
) : Object
Parameters
Name
Type: System.StringRequired. The name of the object to retrieve. Only "DTE" is supported.
Return Value
Type: System.Object
An object.
Remarks
GetObject supports only "DTE" as the Name parameter. This is provided so that extender providers can access the DTE object.
.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.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples