// This file automatically generated by: // Apache Etch 1.2.0-incubating (LOCAL-0) / csharp 1.2.0-incubating (LOCAL-0) // Mon Mar 28 12:14:36 CEST 2011 // This file is automatically created for your convenience and will not be // overwritten once it exists! Please edit this file as necessary to implement // your service logic. using System; using org.apache.etch.examples.mixin.types.ExampleMixin; using org.apache.etch.examples.mixin.types.Example; ///Your custom implementation of BaseExampleClient. Add methods here to provide ///implementation of messages from the server. namespace org.apache.etch.examples.mixin { ///Implementation for ImplExampleClient public class ImplExampleClient : BaseExampleClient { /// Constructs the ImplExampleClient. /// a connection to the server session. Use this to /// send a message to the server. public ImplExampleClient(RemoteExampleServer server) { this.server = server; } /// A connection to the server session. Use this to /// send a message to the server. private readonly RemoteExampleServer server; // TODO: Implement delegates or provide implementation of ExampleClient // messages from the server } }