本文整理汇总了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());
}
示例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);
}
}
示例3: OnSendSamsungResponse
void OnSendSamsungResponse(ReceivedCommand responseCommand, String value)
{
int success = responseCommand.ReadInt16Arg();
String cValue = responseCommand.ReadStringArg();
listener.response (cValue);
}
示例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);
}
}