WorkflowView::IServiceProvider::GetService Method (Type^)
.NET Framework (current version)
Gets the service of the specified type, if it is available.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
private: virtual Object^ GetService( Type^ serviceType ) sealed = IServiceProvider::GetService
Parameters
- serviceType
-
Type:
System::Type^
The Type of the service to retrieve.
Return Value
Type: System::Object^An Object implementing the requested service, or a null reference (Nothing in Visual Basic) if the service cannot be resolved.
Implements
IServiceProvider::GetService(Type^)If the serviceType is CommandID this method will return a specific CommandID. For any other Type, GetService will return an Object that implements the requested service, or a null reference (Nothing) if the service cannot be resolved.
The following example uses the GetService method of the WorkflowView object to return an ISelectionService interface. If the service exists, EnsureVisible is called passing the currently selected activity using the PrimarySelection property of the ISelectionService object.
.NET Framework
Available since 3.0
Available since 3.0
Show: