ConfigurationHelper.GetParameter Method (IDictionary<String, Object>, String, Boolean)
Gets the configuration helper parameter.
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public static object GetParameter(
IDictionary<string, object> parameters,
string name,
bool isRequired = true
)
public:
static Object^ GetParameter(
IDictionary<String^, Object^>^ parameters,
String^ name,
bool isRequired = true
)
static member GetParameter :
parameters:IDictionary<string, Object> *
name:string *
isRequired:bool = true -> Object
Public Shared Function GetParameter (
parameters As IDictionary(Of String, Object),
name As String,
isRequired As Boolean
) As Object
Parameters
parameters
Type: System.Collections.Generic.IDictionary<String, Object>The parameter.
name
Type: System.StringThe name.
isRequired
Type: System.BooleanThe indicator of whether the parameter is required. true if the parameter is required; otherwise, false.
Return Value
Type: System.Object
The configuration helper parameter.
See Also
ConfigurationHelper Class
Microsoft.WindowsAzure.Common.Internals Namespace
Return to top