IBindCtx.GetObjectParam(String, Object) Method

Definition

Looks up the given key in the internally maintained table of contextual object parameters and returns the corresponding object, if one exists.

public:
 void GetObjectParam(System::String ^ pszKey, [Runtime::InteropServices::Out] System::Object ^ % ppunk);
public void GetObjectParam (string pszKey, out object ppunk);
public void GetObjectParam (string pszKey, out object? ppunk);
abstract member GetObjectParam : string * obj -> unit
Public Sub GetObjectParam (pszKey As String, ByRef ppunk As Object)

Parameters

pszKey
String

The name of the object to search for.

ppunk
Object

When this method returns, contains the object interface pointer. This parameter is passed uninitialized.

Remarks

For more information, see the existing documentation for IBindCtx::GetObjectParam in the MSDN library.

Applies to