Different Windows Phone (30)

Source: Internet
Author: User
Tags socket

Communication (communication) based on Socket TCP development of a multiplayer chat room

Introduced

Distinctive Windows Phone 7.5 (SDK 7.1) communication

Example-Developing a multiplayer chat room based on Socket TCP

Example

1. Service End

ClientSocketPacket.cs

Using System; 
Using System.Collections.Generic; 
Using System.Linq; 
   
Using System.Text; namespace Socketservertcp {///<summary>///a package for client sockets and other related information///</summary> Pub 
        Lic class Clientsocketpacket {///<summary>///client Socket///</summary> 
   
        Public System.Net.Sockets.Socket Socket {get; set;} 
        Private byte[] _buffer; 
        <summary>///buffers for this client Socket///</summary> public byte[] Buffer 
   
                {get {if (_buffer = null) _buffer = new byte[64]; 
            return _buffer; 
        } private list<byte> _receivedbyte; <summary>///A byte set of information sent by the client Socket///</summary> public list<byte> Rec Eivedbyte {get {iF (_receivedbyte = = null) _receivedbyte = new list<byte> (); 
            return _receivedbyte; } 
        } 
    } 
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.