DataReceivedEventArgs.cs (277B)
1 using System; 2 3 namespace WinPhoneFtp.FtpService 4 { 5 public class DataReceivedEventArgs : EventArgs 6 { 7 private Byte[] data = null; 8 9 internal DataReceivedEventArgs(Byte[] data) 10 { 11 this.data = data; 12 } 13 14 public Byte[] GetData() 15 { 16 return data; 17 } 18 } 19 }