[Modify] Polish it
This commit is contained in:
parent
9775d93817
commit
df74f3d021
@ -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)
|
||||
|
@ -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 {
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user