< Summary

Class:Microsoft.Azure.EventGrid.Models.MediaLiveEventEncoderConnectedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaLiveEventEncoderConnectedEventData.cs
Covered lines:6
Uncovered lines:6
Coverable lines:12
Total lines:78
Line coverage:50% (6 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_IngestUrl()-100%100%
get_StreamId()-100%100%
get_EncoderIp()-100%100%
get_EncoderPort()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaLiveEventEncoderConnectedEventData.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Encoder connect event data.
 18    /// </summary>
 19    public partial class MediaLiveEventEncoderConnectedEventData
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the
 23        /// MediaLiveEventEncoderConnectedEventData class.
 24        /// </summary>
 125        public MediaLiveEventEncoderConnectedEventData()
 26        {
 27            CustomInit();
 128        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the
 32        /// MediaLiveEventEncoderConnectedEventData class.
 33        /// </summary>
 34        /// <param name="ingestUrl">Gets the ingest URL provided by the live
 35        /// event.</param>
 36        /// <param name="streamId">Gets the stream Id.</param>
 37        /// <param name="encoderIp">Gets the remote IP.</param>
 38        /// <param name="encoderPort">Gets the remote port.</param>
 039        public MediaLiveEventEncoderConnectedEventData(string ingestUrl = default(string), string streamId = default(str
 40        {
 041            IngestUrl = ingestUrl;
 042            StreamId = streamId;
 043            EncoderIp = encoderIp;
 044            EncoderPort = encoderPort;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets the ingest URL provided by the live event.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "ingestUrl")]
 257        public string IngestUrl { get; private set; }
 58
 59        /// <summary>
 60        /// Gets the stream Id.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "streamId")]
 263        public string StreamId { get; private set; }
 64
 65        /// <summary>
 66        /// Gets the remote IP.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "encoderIp")]
 269        public string EncoderIp { get; private set; }
 70
 71        /// <summary>
 72        /// Gets the remote port.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "encoderPort")]
 275        public string EncoderPort { get; private set; }
 76
 77    }
 78}