Assigns data scopes to a data type. By default data types will live in the public data scope (only) and you use this
attribute to specify aditional scopes.
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
Examples
This sample shows how to use the DataScope attribute along with related interfaces and attributes:
CopyC#

// (other IData attributes) [DataScope(DataScopeIdentifier.PublicName)] [DataScope(DataScopeIdentifier.AdministratedName)] [PublishProcessControllerType(typeof(GenericPublishProcessController))] interface IMyDataType : IData, IPublishControlled { // data type properties }