{"id":18379615,"url":"https://github.com/lukicdarkoo/ldsocket","last_synced_at":"2025-10-20T11:50:32.917Z","repository":{"id":70249431,"uuid":"8727109","full_name":"lukicdarkoo/ldsocket","owner":"lukicdarkoo","description":"C# library that allows easy client-server communication ","archived":false,"fork":false,"pushed_at":"2014-07-26T11:37:43.000Z","size":236,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T23:15:27.234Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lukicdarkoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-12T12:20:29.000Z","updated_at":"2014-07-26T11:33:43.000Z","dependencies_parsed_at":"2023-02-21T12:00:46.495Z","dependency_job_id":null,"html_url":"https://github.com/lukicdarkoo/ldsocket","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukicdarkoo%2Fldsocket","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukicdarkoo%2Fldsocket/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukicdarkoo%2Fldsocket/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukicdarkoo%2Fldsocket/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukicdarkoo","download_url":"https://codeload.github.com/lukicdarkoo/ldsocket/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248408510,"owners_count":21098675,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T00:38:50.760Z","updated_at":"2025-10-20T11:50:27.867Z","avatar_url":"https://github.com/lukicdarkoo.png","language":"C#","readme":"ldsocket\n========\n\nClass which makes communication between two C# application in network easy.\n\n\nREQUIREMENTS\n------------\n\n.NET 2.0 or higher\n\n\nINSTALATION\n-----------\n\nAdd new class to your project, name it `LDSocket.cs` and paste code from `LDSocket.cs`\n\n\nEXAMPLE - SERVER\n----------------\n\n    using LDSocket;\n    .....\n    \n    namespace Example\n    {\n      public partial class MainWindow : Window\n      {\n        LDSocket.SocketServer server;\n      \n        public MainWindow()\n        {\n          server = new LDSocket.SocketServer();\n          server.DataReceived += new SocketServer.DataReceivedHandler(server_DataReceived);\n        }\n    \n        void server_DataReceived(string data, int index) \n        {\n          //data received from client and index\n        }\n        \n        void sendMessage(string msg) \n        {\n          server.sendMessage(msg);    //sends message to all clients\n          server.sendMessage(msg, 2); //sends message only to client with index 2\n        }\n      }\n    }\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukicdarkoo%2Fldsocket","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukicdarkoo%2Fldsocket","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukicdarkoo%2Fldsocket/lists"}