예제 #1
0
        /// <summary>
        /// Creates a client who will use the default interface.  It will default to the left shift cypher.
        /// </summary>
        /// <returns>The client object.</returns>
        public override AbsClientEndpt CreateClient()
        {
            System.Console.WriteLine("\t\t\tASTPFactory.CreateClient: Creating a client with default options.");
            ASTPClient client = new ASTPClient {
                Cypher = left.Clone()
            };

            return(client);
        }