AceCollection 클래스

Represents a collection of access control entries specifying access rights for one or more trustees.

상속 계층

System.Object
  System.Collections.CollectionBase
    Microsoft.ReportingServices.Interfaces.AceCollection

네임스페이스:  Microsoft.ReportingServices.Interfaces
어셈블리:   Microsoft.ReportingServices.Interfaces(Microsoft.ReportingServices.Interfaces.dll)
  Microsoft.ReportingServices.SharePoint.UI.WebParts(Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)

구문

‘선언
<SerializableAttribute> _
Public NotInheritable Class AceCollection _
    Inherits CollectionBase
‘사용 방법
Dim instance As AceCollection
[SerializableAttribute]
public sealed class AceCollection : CollectionBase
[SerializableAttribute]
public ref class AceCollection sealed : public CollectionBase
[<SealedAttribute>]
[<SerializableAttribute>]
type AceCollection =  
    class 
        inherit CollectionBase 
    end
public final class AceCollection extends CollectionBase

AceCollection 유형에서 다음 멤버를 표시합니다.

생성자

  이름 설명
공용 메서드 AceCollection Initializes a new instance of the AceCollection class.

맨 위로 이동

속성

  이름 설명
공용 속성 Capacity (CollectionBase에서 상속됨)
공용 속성 Count (CollectionBase에서 상속됨)
공용 속성 Item Gets or sets the element at the specified index. In C#, this property is the indexer for the AceCollection class.

맨 위로 이동

메서드

  이름 설명
공용 메서드 Add Adds an object to the end of the AceCollection.
공용 메서드 Clear (CollectionBase에서 상속됨)
공용 메서드 Equals (Object에서 상속됨)
공용 메서드 GetEnumerator (CollectionBase에서 상속됨)
공용 메서드 GetHashCode (Object에서 상속됨)
공용 메서드 GetType (Object에서 상속됨)
공용 메서드 RemoveAt (CollectionBase에서 상속됨)
공용 메서드 ToString (Object에서 상속됨)

맨 위로 이동

명시적 인터페이스 구현

  이름 설명
명시적 인터페이스 구현전용 메서드 IList.Add (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 메서드 IList.Contains (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 메서드 ICollection.CopyTo (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 메서드 IList.IndexOf (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 메서드 IList.Insert (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 속성 IList.IsFixedSize (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 속성 IList.IsReadOnly (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 속성 ICollection.IsSynchronized (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 속성 IList.Item (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 메서드 IList.Remove (CollectionBase에서 상속됨)
명시적 인터페이스 구현전용 속성 ICollection.SyncRoot (CollectionBase에서 상속됨)

맨 위로 이동

주의

An AceCollection instance contains items of type AceStruct and is used to represent an access control list (ACL) for items in the report server database.

An AceCollection identifies the trustees that are allowed access to a securable item in the report server database. When a user or process tries to access a securable item, the security extension checks the access control entries in the object's access control entry collection to determine whether to grant access to it. The security extension checks the access control entries in sequence until it finds one or more that allow all the requested access rights. For more information about access checks, see CheckAccess.

An AceCollection is similar to an access control list in Microsoft Windows. It is a list that tells a report server which access rights each user has to a particular item in the report server database, such as a folder or an individual report. Each item has a security descriptor that identifies its access control list. The list has an entry for each system user with access privileges. The most common privileges include the ability to read properties, to update content, and to execute reports. Each access control list has one or more access control entries consisting of the name of a user or group and the operations that user is allowed to perform. For each of these users or groups, the access privileges are stated in a collection of enumerable operations. Generally, the system administrator or the item owner creates the access control list for an object when setting report server policies through the Report Server Web service. Management applications (like Report Manager) call the Web service SetPolicies and SetSystemPolicies methods.

An AceCollection is passed as an argument to the CreateSecurityDescriptor method of the IAuthorizationExtension interface. You implement CreateSecurityDescriptor to serialize the AceCollection and any other metadata that you require for your security descriptor. You must also process the AceCollection for an item in the report server database when you implement the CheckAccess method.

스레드 보안

이 유형의 모든 공용 static(Visual Basic에서는 Shared) 멤버는 스레드로부터 안전합니다. 인스턴스 멤버는 스레드로부터의 안전성이 보장되지 않습니다.

참고 항목

참조

Microsoft.ReportingServices.Interfaces 네임스페이스