[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) private string createTextMessage (string type, string message)
{ {
return JsonConvert.SerializeObject ( return new TextMessage {
new TextMessage { UserID = _id,
user_id = _id, Name = _name,
name = _name, Type = type,
type = type, Message = message
message = message }
} .ToString ();
);
} }
private void processBinaryMessage (byte[] data) private void processBinaryMessage (byte[] data)

View File

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

View File

@ -1,12 +1,33 @@
using Newtonsoft.Json;
using System; using System;
namespace Example1 namespace Example1
{ {
internal class TextMessage internal class TextMessage
{ {
public uint? user_id; [JsonProperty ("user_id")]
public string name; public uint? UserID {
public string type; get; set;
public string message; }
[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);
}
} }
} }