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!

ISite.GetService

When implemented by a class, gets a service provided by the ISite.

[Visual Basic]
Function GetService( _
   ByVal service As Type _
) As Object
[C#]
object GetService(
   Type service
);
[C++]
Object* GetService(
   Type* service
) = 0;
[JScript]
function GetService(
   service : Type
) : Object;

Parameters

service
The class or interface that represents the service.

Return Value

An object representing the specified service; or a null reference object, if the ISite does not support the specified service.

See Also

ISite Interface | ISite Members | System.ComponentModel Namespace