Container.GetService Method
.NET Framework 1.1
Gets the service object of the specified type, if it is available.
[Visual Basic] Protected Overridable Function GetService( _ ByVal service As Type _ ) As Object [C#] protected virtual object GetService( Type service ); [C++] protected: virtual Object* GetService( Type* service ); [JScript] protected function GetService( service : Type ) : Object;
Parameters
- service
- The Type of the service to retrieve.
Return Value
An Object implementing the requested service, or a null reference (Nothing in Visual Basic) if the service cannot be resolved.
Remarks
The default implementation of this method returns a null reference (Nothing in Visual Basic). Implementors can override this method to provide a custom implementation to return a service object. For more information, see IServiceProvider.GetService.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
See Also
Container Class | Container Members | System.ComponentModel Namespace | System.IServiceProvider