你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ParameterDefinition 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
ParameterDefinition(String) |
Initializes a new instance of ParameterDefinition. |
ParameterDefinition(String, String) |
Initializes a new instance of ParameterDefinition. |
ParameterDefinition(String)
- Source:
- ParameterDefinition.cs
Initializes a new instance of ParameterDefinition.
public ParameterDefinition (string name);
new Azure.Media.VideoAnalyzer.Edge.Models.ParameterDefinition : string -> Azure.Media.VideoAnalyzer.Edge.Models.ParameterDefinition
Public Sub New (name As String)
Parameters
- name
- String
Name of the parameter declared in the pipeline topology.
Exceptions
name
is null.
Applies to
ParameterDefinition(String, String)
- Source:
- ParameterDefinition.cs
Initializes a new instance of ParameterDefinition.
public ParameterDefinition (string name, string value);
new Azure.Media.VideoAnalyzer.Edge.Models.ParameterDefinition : string * string -> Azure.Media.VideoAnalyzer.Edge.Models.ParameterDefinition
Public Sub New (name As String, value As String)
Parameters
- name
- String
The name of the parameter defined in the pipeline topology.
- value
- String
The value to supply for the named parameter defined in the pipeline topology.
Exceptions
name
or value
is null.