| 
          Send a custom command to the server. Syntax
          object.Command( Command, [Parameters],
          [Options] ) Parameters
          
            CommandA string which specifies the command to send. Valid commands
            vary based on the Internet protocol and the type of server that the
            client is connected to. Consult the protocol standard and/or the
            technical reference documentation for the server to determine what
            commands may be issued by a client application.ParametersAn optional string which specifies one or more parameters to be
            sent along with the command. If more than one parameter is
            required, most Internet protocols require that they be separated by
            a single space character. Consult the protocol standard and/or
            technical reference documentation for the server to determine what
            parameters should be provided when issuing a specific command. If
            no parameters are required for the command, this argument may be
            omitted.OptionsA numeric value which specifies one or more options. Currently
            this argument is reserved and should either be omitted, or a value
            of zero should always be used. Return Value
          A value of zero is returned if the command was successful.
          Otherwise, a non-zero error code is returned which indicates the
          cause of the failure. To determine the result code returned by the
          server in response to the command, read the value of the
          ResultCode property. Remarks
          The Command method sends a command to the server and
          processes the result code sent back in response to that command. This
          method can be used to send custom commands to a server to take
          advantage of features or capabilities that may not be supported
          internally by the control. See Also
          ResultCode Property,
          ResultString Property,
          OnCommand Event |