ConfigurationHelper.CreateFromSettings<T> Method (Func<IDictionary<String, Object>, T>)
Creates a helper exception from the setting.
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public static T CreateFromSettings<T>(
Func<IDictionary<string, object>, T> initializer
)
public:
generic<typename T>
static T CreateFromSettings(
Func<IDictionary<String^, Object^>^, T>^ initializer
)
static member CreateFromSettings<'T> :
initializer:Func<IDictionary<string, Object>, 'T> -> 'T
Public Shared Function CreateFromSettings(Of T) (
initializer As Func(Of IDictionary(Of String, Object), T)
) As T
Parameters
initializer
Type: System.Func<IDictionary<String, Object>, T>The initializer.
Return Value
Type: T
The created exception.
Type Parameters
- T
The type of exception.
See Also
ConfigurationHelper Class
Microsoft.WindowsAzure.Common.Internals Namespace
Return to top