ConfigurationHelper.LookupConnectionInfo Method (IEnumerable<Func<String, String>>, Type, String, String, String)
Checks the connection information.
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public static IDictionary<string, object> LookupConnectionInfo(
IEnumerable<Func<string, string>> configurationSources,
Type type,
string name,
out string settingsName,
out string settingsValue
)
public:
static IDictionary<String^, Object^>^ LookupConnectionInfo(
IEnumerable<Func<String^, String^>^>^ configurationSources,
Type^ type,
String^ name,
[OutAttribute] String^% settingsName,
[OutAttribute] String^% settingsValue
)
static member LookupConnectionInfo :
configurationSources:IEnumerable<Func<string, string>> *
type:Type *
name:string *
settingsName:string byref *
settingsValue:string byref -> IDictionary<string, Object>
Public Shared Function LookupConnectionInfo (
configurationSources As IEnumerable(Of Func(Of String, String)),
type As Type,
name As String,
<OutAttribute> ByRef settingsName As String,
<OutAttribute> ByRef settingsValue As String
) As IDictionary(Of String, Object)
Parameters
configurationSources
Type: System.Collections.Generic.IEnumerable<Func<String, String>>The configuration sources.
type
Type: System.TypeThe connection type.
name
Type: System.StringThe connection name.
settingsName
Type: System.StringThe settings name.
settingsValue
Type: System.StringThe settings value.
Return Value
Type: System.Collections.Generic.IDictionary<String, Object>
The connection information.
See Also
ConfigurationHelper Class
Microsoft.WindowsAzure.Common.Internals Namespace
Return to top