Exemple #1
0
 public static void SetCommunicationType(CommunicationType commType)
 {
     if (setCommunicationType != null)
     {
         setCommunicationType(commType);
     }
 }
Exemple #2
0
        public static CommunicationType GetCommunicationType()
        {
            CommunicationType cbType = default(CommunicationType);

            if (getCommunicationType != null)
            {
                cbType = getCommunicationType();
            }
            return(cbType);
        }