Coder Social home page Coder Social logo

Comments (3)

doghappy avatar doghappy commented on July 19, 2024

You can get it this way.

class MessageSendResponse
{
    public string Command { get; set; }
    public MessageSendBodyResponse Body { get; set; }
}

class MessageSendBodyResponse
{
    [JsonProperty("code")]
    public int Code { get; set; }

    [JsonProperty("body")]
    public MessageSendBodyBodyResponse Body { get; set; }
}

class MessageSendBodyBodyResponse
{
    [JsonProperty("id")]
    public Guid Id { get; set; }

    [JsonProperty("recipient")]
    public IdHashResponse Recipient { get; set; }

    [JsonProperty("originator")]
    public IdHashResponse Originator { get; set; }

    [JsonProperty("isGroup")]
    public bool IsGroup { get; set; }

    [JsonProperty("timestamp")]
    public long Timestamp { get; set; }

    [JsonProperty("mimeType")]
    public string MimeType { get; set; }

    [JsonProperty("data")]
    public byte[] Data { get; set; }

    [JsonProperty("flightId")]
    public string FlightId { get; set; }
}

class IdHashResponse
{
    [JsonProperty("id")]
    public string Id { get; set; }

    [JsonProperty("hash")]
    public string Hash { get; set; }
}

client.On("message send", response =>
{
    var res = response.GetValue<MessageSendResponse>();
    // Encoding.UTF8.GetString(res.Body.Body.Data);
})

Break changes:

v1.x

client.On("eventName", res =>
{
    Encoding.UTF8.GetString(res.Buffer)
});

v2.x

Automatically assign the buffer to the response object.

from socket.io-client-csharp.

dawalters1 avatar dawalters1 commented on July 19, 2024

Alright, now how to do this with OnReceivedEvent?

I get a serialization error because the IncomingBytes contains no items
image

from socket.io-client-csharp.

doghappy avatar doghappy commented on July 19, 2024

Thank you for your feedback

Install-Package SocketIOClient -Version 2.0.0-beta.1

from socket.io-client-csharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.