Coinium.Core.RPC.Sockets.SocketsRpcRequest.SocketsRpcRequest C# (CSharp) Method

SocketsRpcRequest() public method

public SocketsRpcRequest ( string text ) : Newtonsoft.Json
text string
return Newtonsoft.Json
        public SocketsRpcRequest(string text)
        {
            this.Text = text;
            this.Data = JsonConvert.DeserializeObject<dynamic>(this.Text);
        }
SocketsRpcRequest