Switched several members to internal

This commit is contained in:
RogueException
2015-10-17 00:30:14 -03:00
parent 48da25752f
commit 50c5f3bd7f
2 changed files with 3 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ using WSSharpNWebSocket = WebSocketSharp.WebSocket;
namespace Discord.WebSockets
{
public class WSSharpWebSocketEngine : IWebSocketEngine
internal class WSSharpWebSocketEngine : IWebSocketEngine
{
private readonly ConcurrentQueue<string> _sendQueue;
private readonly int _sendInterval;

View File

@@ -1,10 +1,8 @@
using Discord.Helpers;
using Newtonsoft.Json;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.ExceptionServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
@@ -18,7 +16,7 @@ namespace Discord.WebSockets
Disconnecting
}
public class WebSocketMessageEventArgs : EventArgs
internal class WebSocketMessageEventArgs : EventArgs
{
public readonly string Message;
public WebSocketMessageEventArgs(string msg) { Message = msg; }