Exemple #1
0
 public string ConvertInfoText()
 {
     return("ServiceName : " + ServiceName + "\r\n" +
            "ServiceType : " + ServiceType + " (0x" + ServiceInfo.ServiceType.ToString("X2") + ")" + "\r\n" +
            CommonManager.Convert64KeyString(ServiceInfo.Key) + "\r\n" +
            "PartialReception : " + (ServiceInfo.PartialFlag == true ? "ワンセグ" : "-") + " (0x" + (ServiceInfo.PartialFlag ? 1 : 0).ToString("X2") + ")");
 }
Exemple #2
0
        public string ConvertInfoText()
        {
            string ret = "ServiceName : " + ServiceName + "\r\n";

            if (ServiceInfo.HasSPKey)
            {
                return(ret + "※検索による絞り込みでは使用出来ません。\r\n"
                       + " 過去番組表で終了サービスを表示するには\r\n"
                       + " 設定画面[基本設定][EPG取得]にある\r\n"
                       + " [EPG取得サービスのみ表示する]の\r\n"
                       + " チェックをオフにしてください。");
            }
            return(ret + "ServiceType : " + ServiceType + " (0x" + ServiceInfo.service_type.ToString("X2") + ")" + "\r\n" +
                   CommonManager.Convert64KeyString(Key) + "\r\n" +
                   "PartialReception : " + (ServiceInfo.PartialFlag == true ? "ワンセグ" : "-") + " (0x" + (ServiceInfo.PartialFlag ? 1 : 0).ToString("X2") + ")");
        }