Class GraphNode | Azure SDK for Net
Rachel Ross
Published Feb 17, 2026
Specifies a node in the web service graph. The node can either be an input, output or asset node, so only one of the corresponding id properties is populated at any given time.
Inheritance
GraphNode
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.MachineLearning.dll
Syntax
public class GraphNode Constructors
GraphNode()
Initializes a new instance of the GraphNode class.
Declaration
public GraphNode (); GraphNode(String, String, String, IDictionary<String,WebServiceParameter>)
Initializes a new instance of the GraphNode class.
Declaration
public GraphNode (string assetId = null, string inputId = null, string outputId = null, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.MachineLearning.WebServices.Models.WebServiceParameter> parameters = null); Parameters
| String assetId The id of the asset represented by this node. |
| String inputId The id of the input element represented by this node. |
| String outputId The id of the output element represented by this node. |
| IDictionary<String,WebServiceParameter> parameters If applicable, parameters of the node. Global graph parameters map into these, with values set at runtime. |
Properties
AssetId
Gets or sets the id of the asset represented by this node.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="assetId")]
public string AssetId { get; set; } Property Value
InputId
Gets or sets the id of the input element represented by this node.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="inputId")]
public string InputId { get; set; } Property Value
OutputId
Gets or sets the id of the output element represented by this node.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="outputId")]
public string OutputId { get; set; } Property Value
Parameters
Gets or sets if applicable, parameters of the node. Global graph parameters map into these, with values set at runtime.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="parameters")]
public System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.MachineLearning.WebServices.Models.WebServiceParameter> Parameters { get; set; }