IComponentDesignerStateService 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.
Allows a designer to store and retrieve its state.
public interface class IComponentDesignerStateService
public interface IComponentDesignerStateService
type IComponentDesignerStateService = interface
Public Interface IComponentDesignerStateService
Remarks
Designer state is keyed by the component with which the designer is associated. The Web Forms design surface offers this service and component designers use the service. This is an optional host service, and control designers should not assume it will always be provided.
Designer state is represented as a set of name/value pairs, in the form of a dictionary. Values stored in the dictionary must be serializable. The specified component should be sited in the designer and should have a non-empty name.
Caution
Do not store sensitive information to the IComponentDesignerStateService. Sensitive information includes password and authentication data, or any data you do not want to expose to an unwanted source.
Methods
GetState(IComponent, String) |
Gets a state item specified by the key for the given component. |
SetState(IComponent, String, Object) |
Sets a state item specified by the key for the given component. |