-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
MediaGraphTopologyProperties.cs
51 lines (45 loc) · 2.7 KB
/
MediaGraphTopologyProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using Azure.Core;
namespace Azure.Media.Analytics.Edge.Models
{
/// <summary> A description of the properties of a media graph topology. </summary>
public partial class MediaGraphTopologyProperties
{
/// <summary> Initializes a new instance of MediaGraphTopologyProperties. </summary>
public MediaGraphTopologyProperties()
{
Parameters = new ChangeTrackingList<MediaGraphParameterDeclaration>();
Sources = new ChangeTrackingList<MediaGraphSource>();
Processors = new ChangeTrackingList<MediaGraphProcessor>();
Sinks = new ChangeTrackingList<MediaGraphSink>();
}
/// <summary> Initializes a new instance of MediaGraphTopologyProperties. </summary>
/// <param name="description"> A description of a media graph topology. It is recommended to use this to describe the expected use of the topology. </param>
/// <param name="parameters"> The list of parameters defined in the topology. The value for these parameters are supplied by instances of this topology. </param>
/// <param name="sources"> The list of source nodes in this topology. </param>
/// <param name="processors"> The list of processor nodes in this topology. </param>
/// <param name="sinks"> The list of sink nodes in this topology. </param>
internal MediaGraphTopologyProperties(string description, IList<MediaGraphParameterDeclaration> parameters, IList<MediaGraphSource> sources, IList<MediaGraphProcessor> processors, IList<MediaGraphSink> sinks)
{
Description = description;
Parameters = parameters;
Sources = sources;
Processors = processors;
Sinks = sinks;
}
/// <summary> A description of a media graph topology. It is recommended to use this to describe the expected use of the topology. </summary>
public string Description { get; set; }
/// <summary> The list of parameters defined in the topology. The value for these parameters are supplied by instances of this topology. </summary>
public IList<MediaGraphParameterDeclaration> Parameters { get; }
/// <summary> The list of source nodes in this topology. </summary>
public IList<MediaGraphSource> Sources { get; }
/// <summary> The list of processor nodes in this topology. </summary>
public IList<MediaGraphProcessor> Processors { get; }
/// <summary> The list of sink nodes in this topology. </summary>
public IList<MediaGraphSink> Sinks { get; }
}
}