RoleProviderCollection 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
繼承 RoleProvider 抽象類別的物件集合。
public ref class RoleProviderCollection sealed : System::Configuration::Provider::ProviderCollection
public sealed class RoleProviderCollection : System.Configuration.Provider.ProviderCollection
type RoleProviderCollection = class
inherit ProviderCollection
Public NotInheritable Class RoleProviderCollection
Inherits ProviderCollection
- 繼承
範例
下列程式代碼範例會列出為應用程式及其各自的類型啟用的提供者。
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Web.Security" %>
<%@ Import Namespace="System.Configuration.Provider" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>List Enabled Providers</title>
</head>
<body>
<%
foreach (RoleProvider p in Roles.Providers)
Response.Write(p.Name + ", " + p.GetType() + "<br />");
%>
</body>
</html>
<%@ Page Language="VB" %>
<%@ Import Namespace="System.Web.Security" %>
<%@ Import Namespace="System.Configuration.Provider" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>List Enabled Providers</title>
</head>
<body>
<%
For Each p As RoleProvider In Roles.Providers
Response.Write(p.Name & ", " & p.GetType().ToString() & "<br />")
Next
%>
</body>
</html>
備註
應用程式的角色提供者會由 Providers 類別的 Roles 屬性公開為唯讀RoleProviderCollection。 您可以依名稱存取集合中的特定角色提供者,並將其轉換成特定提供者類型,例如 SqlRoleProvider。 這可讓您管理單一應用程式中多個數據存放區的角色資訊,以及存取不屬於抽象類之角色提供者的 RoleProvider 自定義成員。
建構函式
RoleProviderCollection() |
建立新的空白角色提供者集合。 |
屬性
Count |
取得集合中的提供者數目。 (繼承來源 ProviderCollection) |
IsSynchronized |
取得值,表示是否同步化存取集合 (執行緒安全)。 (繼承來源 ProviderCollection) |
Item[String] |
取得由集合中指定之提供者名稱所參考的角色提供者。 |
SyncRoot |
取得目前的物件。 (繼承來源 ProviderCollection) |
方法
Add(ProviderBase) |
將角色提供者加入集合。 |
Clear() |
移除集合的所有項目。 (繼承來源 ProviderCollection) |
CopyTo(ProviderBase[], Int32) |
從指定之索引處開始,將集合的內容複製到指定的陣列。 (繼承來源 ProviderCollection) |
CopyTo(RoleProvider[], Int32) |
將角色提供者集合複製到一維陣列。 |
Equals(Object) |
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
GetEnumerator() |
傳回實作 IEnumerator 介面以逐一查看集合的物件。 (繼承來源 ProviderCollection) |
GetHashCode() |
做為預設雜湊函式。 (繼承來源 Object) |
GetType() |
取得目前執行個體的 Type。 (繼承來源 Object) |
MemberwiseClone() |
建立目前 Object 的淺層複製。 (繼承來源 Object) |
Remove(String) |
從集合移除提供者。 (繼承來源 ProviderCollection) |
SetReadOnly() |
將集合設定為唯讀。 (繼承來源 ProviderCollection) |
ToString() |
傳回代表目前物件的字串。 (繼承來源 Object) |
明確介面實作
ICollection.CopyTo(Array, Int32) |
從特定的陣列索引開始,將 ProviderCollection 的項目複製到陣列中。 (繼承來源 ProviderCollection) |
擴充方法
Cast<TResult>(IEnumerable) |
將 IEnumerable 的項目轉換成指定的型別。 |
OfType<TResult>(IEnumerable) |
根據指定的型別來篩選 IEnumerable 的項目。 |
AsParallel(IEnumerable) |
啟用查詢的平行化作業。 |
AsQueryable(IEnumerable) |
將 IEnumerable 轉換成 IQueryable。 |