ConnectionStringSettingsCollection.IndexOf(ConnectionStringSettings) Method
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.
Returns the collection index of the passed ConnectionStringSettings object.
public:
int IndexOf(System::Configuration::ConnectionStringSettings ^ settings);
public int IndexOf (System.Configuration.ConnectionStringSettings settings);
member this.IndexOf : System.Configuration.ConnectionStringSettings -> int
Public Function IndexOf (settings As ConnectionStringSettings) As Integer
Parameters
- settings
- ConnectionStringSettings
A ConnectionStringSettings object in the collection.
Returns
The collection index of the specified ConnectionStringSettingsCollection object.
Examples
The following example shows how to get the index of the specified ConnectionStringSettings object.
static void GetIndex()
{
try
{
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Clear the connection strings collection.
ConnectionStringsSection csSection =
config.ConnectionStrings;
ConnectionStringSettingsCollection csCollection =
csSection.ConnectionStrings;
// Get the connection string setting element
// with the specified name.
ConnectionStringSettings cs =
csCollection["ConnStr0"];
// Get its index;
int index = csCollection.IndexOf(cs);
Console.WriteLine(
"Connection string settings index: {0}",
index.ToString());
}
catch (ConfigurationErrorsException err)
{
Console.WriteLine(err.ToString());
}
}
Shared Sub GetIndex()
Try
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Clear the connection strings collection.
Dim csSection _
As ConnectionStringsSection = _
config.ConnectionStrings
Dim csCollection _
As ConnectionStringSettingsCollection = _
csSection.ConnectionStrings
' Get the connection string setting element
' with the specified name.
Dim cs _
As ConnectionStringSettings = _
csCollection("ConnStr0")
' Get its index;
Dim index As Integer = _
csCollection.IndexOf(cs)
Console.WriteLine( _
"Connection string settings index: {0}", _
index.ToString())
Catch err As ConfigurationErrorsException
Console.WriteLine(err.ToString())
End Try
End Sub
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET