Exemplo n.º 1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void getSpooledFiles(final com.ibm.jtopenlite.command.CommandConnection conn, String user, final SpooledFileInfoListener listener) throws IOException
//JAVA TO C# CONVERTER WARNING: 'final' parameters are not available in .NET:
        public virtual void getSpooledFiles(CommandConnection conn, string user, SpooledFileInfoListener listener)
        {
            impl_.SpooledFileInfoListener = listener;
            impl_.getSpooledFiles(conn, user);
        }
Exemplo n.º 2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void getSpooledFiles(final com.ibm.jtopenlite.command.CommandConnection conn, final SpooledFileInfoListener listener) throws IOException
//JAVA TO C# CONVERTER WARNING: 'final' parameters are not available in .NET:
        public virtual void getSpooledFiles(CommandConnection conn, SpooledFileInfoListener listener)
        {
            getSpooledFiles(conn, "*CURRENT", listener);
        }
Exemplo n.º 3
0
        /// <summary>
        /// Returns an array of spooled files for the specified user, similar to the way WRKSPLF does.
        /// The various SpooledFileInfo.toString() methods print the fields the way WRKSPLF does. </summary>
        /// <param name="conn"> The connection to use. </param>
        /// <param name="user"> The user name, or *CURRENT, or *ALL.
        ///  </param>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public SpooledFileInfo[] getSpooledFiles(final com.ibm.jtopenlite.command.CommandConnection conn, String user) throws IOException
//JAVA TO C# CONVERTER WARNING: 'final' parameters are not available in .NET:
        public virtual SpooledFileInfo[] getSpooledFiles(CommandConnection conn, string user)
        {
            impl_.SpooledFileInfoListener = impl_;
            return(impl_.getSpooledFiles(conn, user));
        }
Exemplo n.º 4
0
        /// <summary>
        /// Returns an array of spooled files for the current user, similar to the way WRKSPLF does.
        /// The various SpooledFileInfo.toString() methods print the fields the way WRKSPLF does. </summary>
        /// <param name="conn"> The connection to use.
        ///  </param>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public SpooledFileInfo[] getSpooledFiles(final com.ibm.jtopenlite.command.CommandConnection conn) throws IOException
//JAVA TO C# CONVERTER WARNING: 'final' parameters are not available in .NET:
        public virtual SpooledFileInfo[] getSpooledFiles(CommandConnection conn)
        {
            return(getSpooledFiles(conn, "*CURRENT"));
        }