[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)
|
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)
|
||||||
|
@ -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 {
|
||||||
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user