共用方式為


FunctionParameter Constructors

Definition

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.

type
Type

The Type of the parameter.

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.

type
Type

The Type of the parameter.

properties
IReadOnlyDictionary<String,Object>

The properties of the parameter.

Applies to