예제 #1
0
        private void Capability()
        {
            CapabilityCommand cc = new CapabilityCommand(null);

            CommandResult cr = ExecuteCommand(cc);

            foreach (string s in cr.Results)
            {
                Log(LogType.INFO, s);
            }
        }
예제 #2
0
 public virtual void ProcessCapabilityCommand(CapabilityCommand cmd)
 {
     this.Session.AppendResponse(new CapabilityResponse());
     this.Session.AppendResponse(new ServerStatusResponse(cmd.Tag, ServerStatusResponseType.OK, "CAPABILITY completed"));
 }