[Modify] Polish it

This commit is contained in:
sta 2016-07-31 17:02:25 +09:00
parent 9775d93817
commit df74f3d021
3 changed files with 34 additions and 14 deletions

View File

@ -119,14 +119,13 @@ namespace Example1
private string createTextMessage (string type, string message)
{
return JsonConvert.SerializeObject (
new TextMessage {
user_id = _id,
name = _name,
type = type,
message = message
return new TextMessage {
UserID = _id,
Name = _name,
Type = type,
Message = message
}
);
.ToString ();
}
private void processBinaryMessage (byte[] data)

View File

@ -7,8 +7,8 @@ namespace Example1
{
public static void Main (string[] args)
{
using (var streamer = new AudioStreamer ("ws://agektmr.node-ninja.com:3000/socket"))
//using (var streamer = new AudioStreamer ("ws://localhost:3000/socket"))
//using (var streamer = new AudioStreamer ("ws://agektmr.node-ninja.com:3000/socket"))
using (var streamer = new AudioStreamer ("ws://localhost:3000/socket"))
{
string name;
do {

View File

@ -1,12 +1,33 @@
using Newtonsoft.Json;
using System;
namespace Example1
{
internal class TextMessage
{
public uint? user_id;
public string name;
public string type;
public string message;
[JsonProperty ("user_id")]
public uint? UserID {
get; set;
}
[JsonProperty ("name")]
public string Name {
get; set;
}
[JsonProperty ("type")]
public string Type {
get; set;
}
[JsonProperty ("message")]
public string Message {
get; set;
}
public override string ToString ()
{
return JsonConvert.SerializeObject (this);
}
}
}