SqlCacheDependencyDatabaseCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the specified SqlCacheDependencyDatabase collection item.
Overloads
Item[Int32] |
Gets or sets the SqlCacheDependencyDatabase object at the specified index. |
Item[String] |
Gets or sets the SqlCacheDependencyDatabase object with the specified name. |
Item[Int32]
Gets or sets the SqlCacheDependencyDatabase object at the specified index.
public:
property System::Web::Configuration::SqlCacheDependencyDatabase ^ default[int] { System::Web::Configuration::SqlCacheDependencyDatabase ^ get(int index); void set(int index, System::Web::Configuration::SqlCacheDependencyDatabase ^ value); };
public System.Web.Configuration.SqlCacheDependencyDatabase this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.SqlCacheDependencyDatabase with get, set
Default Public Property Item(index As Integer) As SqlCacheDependencyDatabase
Parameters
- index
- Int32
The collection index of the SqlCacheDependencyDatabase object.
Property Value
The SqlCacheDependencyDatabase object at the specified index.
Applies to
Item[String]
Gets or sets the SqlCacheDependencyDatabase object with the specified name.
public:
property System::Web::Configuration::SqlCacheDependencyDatabase ^ default[System::String ^] { System::Web::Configuration::SqlCacheDependencyDatabase ^ get(System::String ^ name); };
public System.Web.Configuration.SqlCacheDependencyDatabase this[string name] { get; }
member this.Item(string) : System.Web.Configuration.SqlCacheDependencyDatabase
Default Public ReadOnly Property Item(name As String) As SqlCacheDependencyDatabase
Parameters
- name
- String
The name of the SqlCacheDependencyDatabase object.
Property Value
The SqlCacheDependencyDatabase object with the specified name.