| 112 |
/// <param name="sender">The sender.</param> |
/// <param name="sender">The sender.</param> |
| 113 |
/// <param name="method">The name of the method.</param> |
/// <param name="method">The name of the method.</param> |
| 114 |
/// <param name="args">Generic message data in bytes</param> |
/// <param name="args">Generic message data in bytes</param> |
| 115 |
private void HandleRexPrimFreeData(object sender, string method, byte[][] args) |
protected void HandleRexPrimFreeData(object sender, string method, byte[][] args) |
| 116 |
{ |
{ |
| 117 |
//parse byte data to strings |
//parse byte data to strings |
| 118 |
List<string> sargs = new List<string>(); |
List<string> sargs = new List<string>(); |
| 265 |
|
|
| 266 |
protected void RexClientView_BinaryGenericMessage(Object sender, string method, byte[][] args) |
protected void RexClientView_BinaryGenericMessage(Object sender, string method, byte[][] args) |
| 267 |
{ |
{ |
| 268 |
if (method == "RexPrimData".ToLower()) |
if (method.ToLower() == "rexprimdata") |
| 269 |
{ |
{ |
| 270 |
HandleRexPrimData(args); |
HandleRexPrimData(args); |
| 271 |
return; |
return; |
| 272 |
} |
} |
| 273 |
else if (method == "rexdata") |
else if (method.ToLower() == "rexdata") |
| 274 |
{ |
{ |
| 275 |
HandleRexPrimFreeData(sender, method, args); |
HandleRexPrimFreeData(sender, method, args); |
| 276 |
return; |
return; |