blob: af9aa19b5f8afc87beac41d5c7b8dd5430dca09d (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.WebRTC
{
public class IceCandidate
{
/// <summary>
/// Gets or sets the SDP mid string.
/// </summary>
public String SdpMid { get; set; }
/// <summary>
/// Gets or sets the SDP line index string.
/// </summary>
public int SdpMLineIndex { get; set; }
/// <summary>
/// Gets or sets the candidate string.
/// </summary>
public String Sdp { get; set; }
}
}
|