mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 04:15:00 +00:00
41 lines
1012 B
C#
41 lines
1012 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
|
|
{
|
|
public enum eCodecCallDirection
|
|
{
|
|
Unknown = 0, Incoming, Outgoing
|
|
}
|
|
|
|
public class CodecCallDirection
|
|
{
|
|
/// <summary>
|
|
/// Takes the Cisco call type and converts to the matching enum
|
|
/// </summary>
|
|
/// <param name="s"></param>
|
|
/// <returns></returns>
|
|
public static eCodecCallDirection ConvertToDirectionEnum(string s)
|
|
{
|
|
switch (s.ToLower())
|
|
{
|
|
case "incoming":
|
|
{
|
|
return eCodecCallDirection.Incoming;
|
|
}
|
|
case "outgoing":
|
|
{
|
|
return eCodecCallDirection.Outgoing;
|
|
}
|
|
default:
|
|
return eCodecCallDirection.Unknown;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
} |