VideoSink 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
VideoSink() |
Initializes a new instance of the VideoSink class. |
VideoSink(String, IList<NodeInput>, String, VideoCreationProperties, VideoPublishingOptions) |
Initializes a new instance of the VideoSink class. |
VideoSink()
Initializes a new instance of the VideoSink class.
public VideoSink ();
Public Sub New ()
Applies to
VideoSink(String, IList<NodeInput>, String, VideoCreationProperties, VideoPublishingOptions)
Initializes a new instance of the VideoSink class.
public VideoSink (string name, System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.NodeInput> inputs, string videoName, Microsoft.Azure.Management.VideoAnalyzer.Models.VideoCreationProperties videoCreationProperties = default, Microsoft.Azure.Management.VideoAnalyzer.Models.VideoPublishingOptions videoPublishingOptions = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.VideoSink : string * System.Collections.Generic.IList<Microsoft.Azure.Management.VideoAnalyzer.Models.NodeInput> * string * Microsoft.Azure.Management.VideoAnalyzer.Models.VideoCreationProperties * Microsoft.Azure.Management.VideoAnalyzer.Models.VideoPublishingOptions -> Microsoft.Azure.Management.VideoAnalyzer.Models.VideoSink
Public Sub New (name As String, inputs As IList(Of NodeInput), videoName As String, Optional videoCreationProperties As VideoCreationProperties = Nothing, Optional videoPublishingOptions As VideoPublishingOptions = Nothing)
Parameters
- name
- String
Node name. Must be unique within the topology.
An array of upstream node references within the topology to be used as inputs for this node.
- videoName
- String
Name of a new or existing video resource used to capture and publish content. Note: if downstream of RTSP source, and if disableArchive is set to true, then no content is archived.
- videoCreationProperties
- VideoCreationProperties
Optional video properties to be used in case a new video resource needs to be created on the service.
- videoPublishingOptions
- VideoPublishingOptions
Options to change how the video sink publishes content via the video resource. This property is only allowed for topologies where "kind" is set to "live".
Applies to
Azure SDK for .NET