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!

IValueAccess.GetServiceObject

Retrieves host services that assist the value editor. The only service currently available in IEditorHost, which will be obtained by passing in typeof(IEditorSite), and IEditorSite, which can be obtained by passing in typeof(IEditorSite).

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

Parameters

serviceClass
[To be supplied.]

Return Value

service that was requested. (returning null if service wasn't available.)

See Also

IValueAccess Interface | IValueAccess Members | System.ComponentModel Namespace