IWorkflowDesignerStorageService Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a service available to the Windows Workflow Designer host to store and retrieve data.
This API supports the product infrastructure and is not intended to be used directly from your code.
public interface class IWorkflowDesignerStorageService
public interface IWorkflowDesignerStorageService
type IWorkflowDesignerStorageService = interface
Public Interface IWorkflowDesignerStorageService
Remarks
This interface is implemented and used internally by Visual Studio 2010, which is the primary host of the Workflow Designer.
Methods
AddData(String, Object) |
This API supports the product infrastructure and is not intended to be used directly from your code. Adds the specified key/value pair to the dictionary. |
ContainsKey(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Returns a value that indicates whether the dictionary contains an item with the specified key. |
GetData(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Returns the data associated with the specified key. |
RemoveData(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Removes the data associated with the specified key from the dictionary. |
SetData(String, Object) |
This API supports the product infrastructure and is not intended to be used directly from your code. Updates the data for an existing dictionary item identified by the specified key. |