Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Domain/MessageRecieveEventArgs.cs

Last change on this file was 13971, checked in by thasling, 8 years ago

#2615:
increased message size to 20MB
made changes in some interfaces

File size: 222 bytes
RevLine 
[13524]1using System;
2
[13924]3namespace DistributedGA.Core.Domain {
4  public class MessageRecieveEventArgs : EventArgs {
5    public int val;
[13971]6    public byte[] data { get; set; }
[13924]7    public PeerInfo Sender { get; set; }
8  }
[13524]9}
Note: See TracBrowser for help on using the repository browser.