WorkflowView.IServiceProvider.GetService(Type) 方法

定义

获取指定类型的服务(如果可用)。

 virtual System::Object ^ System.IServiceProvider.GetService(Type ^ serviceType) = IServiceProvider::GetService;
object IServiceProvider.GetService (Type serviceType);
abstract member System.IServiceProvider.GetService : Type -> obj
override this.System.IServiceProvider.GetService : Type -> obj
Function GetService (serviceType As Type) As Object Implements IServiceProvider.GetService

参数

serviceType
Type

要检索的服务的 Type

返回

Object

一个实现所请求服务的 Object;如果无法解析该服务,则为空引用(在 Visual Basic 中为 Nothing)。

实现

示例

下面的示例使用 GetService 对象的 WorkflowView 方法返回 ISelectionService 接口。 如果服务存在,则使用 EnsureVisible 对象的 PrimarySelection 属性调用 ISelectionService 传递当前选择的活动。

public void FindSelection()
{
    ISelectionService selectionService;
    selectionService = ((IServiceProvider)this.workflowView).GetService(typeof(ISelectionService))
        as ISelectionService;

    if (selectionService != null)
        this.workflowView.EnsureVisible(selectionService.PrimarySelection);
}
Public Sub FindSelection()
    Dim selectionService As ISelectionService
    selectionService = CType(CType(Me.workflowView, IServiceProvider).GetService(GetType(ISelectionService)), ISelectionService)

    If selectionService IsNot Nothing Then
        Me.workflowView.EnsureVisible(selectionService.PrimarySelection)
    End If
End Sub

注解

如果 serviceTypeCommandID,则此方法将返回特定的 CommandID。 对于任何其他 TypeGetService 将返回实现所请求服务的对象;如果无法解析该服务,则返回空引用 (Nothing)。

适用于