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.SharePoint.UI.WebParts (在 Microsoft.ReportingServices.SharePoint.UI.WebParts.dll 中)
Microsoft.ReportingServices.Interfaces (在 Microsoft.ReportingServices.Interfaces.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 型別公開下列成員。
屬性
名稱 | 說明 | |
---|---|---|
Capacity | (繼承自 CollectionBase。) | |
Count | (繼承自 CollectionBase。) | |
InnerList | (繼承自 CollectionBase。) | |
Item | Gets or sets the element at the specified index. In C#, this property is the indexer for the AceCollection class. | |
List | (繼承自 CollectionBase。) |
上層
方法
名稱 | 說明 | |
---|---|---|
Add | Adds an object to the end of the AceCollection. | |
Clear | (繼承自 CollectionBase。) | |
Equals | (繼承自 Object。) | |
Finalize | (繼承自 Object。) | |
GetEnumerator | (繼承自 CollectionBase。) | |
GetHashCode | (繼承自 Object。) | |
GetType | (繼承自 Object。) | |
MemberwiseClone | (繼承自 Object。) | |
OnClear | (繼承自 CollectionBase。) | |
OnClearComplete | (繼承自 CollectionBase。) | |
OnInsert | (繼承自 CollectionBase。) | |
OnInsertComplete | (繼承自 CollectionBase。) | |
OnRemove | (繼承自 CollectionBase。) | |
OnRemoveComplete | (繼承自 CollectionBase。) | |
OnSet | (繼承自 CollectionBase。) | |
OnSetComplete | (繼承自 CollectionBase。) | |
OnValidate | (繼承自 CollectionBase。) | |
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) 成員都是執行緒安全的。並不是所有的執行個體成員都保證可以用於所有的執行緒。