WorkflowView.IServiceProvider.GetService(Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定类型的服务(如果可用)。
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
参数
返回
一个实现所请求服务的 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
注解
如果 serviceType
为 CommandID
,则此方法将返回特定的 CommandID
。 对于任何其他 Type
,GetService
将返回实现所请求服务的对象;如果无法解析该服务,则返回空引用 (Nothing
)。