Permission.ReadDefinition Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the ReadDefinition attribute for the parent object.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[DefaultValueAttribute(ReadDefinitionAccess.None)]
public ReadDefinitionAccess ReadDefinition { get; set; }
public:
[DefaultValueAttribute(ReadDefinitionAccess::None)]
property ReadDefinitionAccess ReadDefinition {
    ReadDefinitionAccess get();
    void set(ReadDefinitionAccess value);
}
[<DefaultValueAttribute(ReadDefinitionAccess.None)>]
member ReadDefinition : ReadDefinitionAccess with get, set
<DefaultValueAttribute(ReadDefinitionAccess.None)>
Public Property ReadDefinition As ReadDefinitionAccess

Property Value

Type: Microsoft.AnalysisServices.ReadDefinitionAccess

An enumeration value with the ReadDefinition attributes. Values can be None, Basic, or Allowed; default value is None.

Remarks

If Allowed, members can read the DDL associated with the object.

Basic and Allowed are inherited to objects contained within the object. Allowed overrides Basic and None.

Allowed is required for DISCOVER_XML_METADATA on an object. Basic is required to create linked objects and local cubes.

See Also

Permission Class
Microsoft.AnalysisServices Namespace

Return to top