当前位置: 首页>>代码示例>>C#>>正文


C# ReceivedCommand.ReadStringArg方法代码示例

本文整理汇总了C#中CommandMessenger.ReceivedCommand.ReadStringArg方法的典型用法代码示例。如果您正苦于以下问题:C# ReceivedCommand.ReadStringArg方法的具体用法?C# ReceivedCommand.ReadStringArg怎么用?C# ReceivedCommand.ReadStringArg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CommandMessenger.ReceivedCommand的用法示例。


在下文中一共展示了ReceivedCommand.ReadStringArg方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OnStatus

 // Callback function that prints the Arduino status to the console
 void OnStatus(ReceivedCommand arguments)
 {
     Console.Write("Arduino status: ");
     Console.WriteLine(arguments.ReadStringArg());
 }
开发者ID:DiLRandI,项目名称:Arduino-CmdMessenger,代码行数:6,代码来源:SendAndReceive.cs

示例2: OnResponse

 //we use this for general response debugging
 void OnResponse(ReceivedCommand arguments)
 {
     int cStatus = arguments.ReadInt16Arg ();
     string cMessage = arguments.ReadStringArg ();
     if (Globals.arguments ().verbose) {
         Console.WriteLine ("Command OnResponse received with status " + cStatus + " and message: " + cMessage);
         Console.WriteLine (arguments.RawString);
     }
 }
开发者ID:KyleTheHack3r,项目名称:infrared-tv-control,代码行数:10,代码来源:ArduinoManager.cs

示例3: OnSendSamsungResponse

        void OnSendSamsungResponse(ReceivedCommand responseCommand, String value)
        {
            int success = responseCommand.ReadInt16Arg();
            String cValue = responseCommand.ReadStringArg();

            listener.response (cValue);
        }
开发者ID:KyleTheHack3r,项目名称:infrared-tv-control,代码行数:7,代码来源:ArduinoManager.cs

示例4: OnEventCommand

        protected void OnEventCommand(ReceivedCommand arguments)
        {
            if (isReady())
            {
                var evtType = (EventType)Enum.Parse(typeof(EventType), arguments.CmdId.ToString());

                LogUtil.Info("[Event] Received event from Petduino: " + evtType);
                LogUtil.Info("[Event] Sending event to dweet: " + evtType);

                // Create event entity
                var entity = new EventEntity
                {
                    Name = evtType
                };

                // Check for a value
                var value = arguments.ReadStringArg();
                if (value != null)
                {
                    entity.Value = value;
                }

                // Send dweet
                _dweetClient.SendDweet(entity);
            }
        }
开发者ID:Vrijdagonline,项目名称:petduino-connect,代码行数:26,代码来源:PetduinoConnect.cs


注:本文中的CommandMessenger.ReceivedCommand.ReadStringArg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。