IWorkflowDesignerStorageService 接口

定义

提供 Windows 工作流设计器主机可用于存储和检索数据的服务。Provides a service available to the Windows Workflow Designer host to store and retrieve data.

此 API 支持产品基础结构,不能在代码中直接使用。

public interface class IWorkflowDesignerStorageService
public interface IWorkflowDesignerStorageService
type IWorkflowDesignerStorageService = interface
Public Interface IWorkflowDesignerStorageService

注解

此接口由 Visual Studio 2010 (这是工作流设计器的主要主机)在内部实现和使用。This interface is implemented and used internally by Visual Studio 2010, which is the primary host of the Workflow Designer.

方法

AddData(String, Object)

此 API 支持产品基础结构,不能在代码中直接使用。

将指定的键/值对添加到字典中。Adds the specified key/value pair to the dictionary.

ContainsKey(String)

此 API 支持产品基础结构,不能在代码中直接使用。

返回一个值,该值指示字典是否包含具有指定键的项。Returns a value that indicates whether the dictionary contains an item with the specified key.

GetData(String)

此 API 支持产品基础结构,不能在代码中直接使用。

返回与指定键关联的数据。Returns the data associated with the specified key.

RemoveData(String)

此 API 支持产品基础结构,不能在代码中直接使用。

从字典中移除与指定键关联的数据。Removes the data associated with the specified key from the dictionary.

SetData(String, Object)

此 API 支持产品基础结构,不能在代码中直接使用。

更新由指定键标识的现有字典项的数据。Updates the data for an existing dictionary item identified by the specified key.

适用于