WorkflowView.GetService(Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定类型的服务对象(如果可用)。
protected:
override System::Object ^ GetService(Type ^ serviceType);
protected override object GetService (Type serviceType);
override this.GetService : Type -> obj
Protected Overrides Function GetService (serviceType As Type) As Object
参数
返回
如果 serviceType
是 typeof(
CommandID)
,则 GetService
返回特定的 CommandID;否则,GetService
返回实现所请求服务的 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
注解
GetService
返回实现所请求服务的 Object,或在无法解析服务的情况下返回空引用 (Nothing
)。