NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IContainer.GetComponent

Gets a specific component in the IContainer.

[Visual Basic]
Function GetComponent( _
   ByVal name As String _
) As IComponent
[C#]
IComponent GetComponent(
   string name
);
[C++]
IComponent* GetComponent(
   String* name
) = 0;
[JScript]
function GetComponent(
   name : String
) : IComponent;

Parameters

name
The name of the IComponent to get.

Return Value

The IComponent specified by name; or a null reference object, if the named component cannot be found.

See Also

IContainer Interface | IContainer Members | System.ComponentModel Namespace