FunctionParameter Constructors
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.
Overloads
FunctionParameter(String, Type) |
Creates an instance of the FunctionParameter class. |
FunctionParameter(String, Type, IReadOnlyDictionary<String,Object>) |
Creates an instance of the FunctionParameter class. |
FunctionParameter(String, Type)
- Source:
- FunctionParameter.cs
Creates an instance of the FunctionParameter class.
public FunctionParameter (string name, Type type);
new Microsoft.Azure.Functions.Worker.FunctionParameter : string * Type -> Microsoft.Azure.Functions.Worker.FunctionParameter
Public Sub New (name As String, type As Type)
Parameters
- name
- String
The parameter name.
Applies to
FunctionParameter(String, Type, IReadOnlyDictionary<String,Object>)
- Source:
- FunctionParameter.cs
Creates an instance of the FunctionParameter class.
public FunctionParameter (string name, Type type, System.Collections.Generic.IReadOnlyDictionary<string,object> properties);
new Microsoft.Azure.Functions.Worker.FunctionParameter : string * Type * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.Azure.Functions.Worker.FunctionParameter
Public Sub New (name As String, type As Type, properties As IReadOnlyDictionary(Of String, Object))
Parameters
- name
- String
The parameter name.
- properties
- IReadOnlyDictionary<String,Object>
The properties of the parameter.
Applies to
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.
Azure SDK for .NET