public System.IAsyncResult Beginupdate_signature_file_manual(ASMFileTransferContext file_context,bool flg_is_user_defined,bool do_set_active,bool force,string user_name,bool check_interval, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("update_signature_file_manual", new object[] {
     file_context,
     flg_is_user_defined,
     do_set_active,
     force,
     user_name,
     check_interval}, callback, asyncState);
 }
Example #2
0
 public System.IAsyncResult Beginupdate_signature_file_manual(ASMFileTransferContext file_context, bool flg_is_user_defined, bool do_set_active, bool force, string user_name, bool check_interval, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("update_signature_file_manual", new object[] {
         file_context,
         flg_is_user_defined,
         do_set_active,
         force,
         user_name,
         check_interval
     }, callback, asyncState));
 }
Example #3
0
        public ASMSignatureFileUpdateReturnValue update_signature_file_manual(
            ASMFileTransferContext file_context,
            bool flg_is_user_defined,
            bool do_set_active,
            bool force,
            string user_name,
            bool check_interval
            )
        {
            object [] results = this.Invoke("update_signature_file_manual", new object [] {
                file_context,
                flg_is_user_defined,
                do_set_active,
                force,
                user_name,
                check_interval
            });

            return((ASMSignatureFileUpdateReturnValue)(results[0]));
        }
        public ASMSignatureFileUpdateReturnValue update_signature_file_manual(
		ASMFileTransferContext file_context,
		bool flg_is_user_defined,
		bool do_set_active,
		bool force,
		string user_name,
		bool check_interval
	)
        {
            object [] results = this.Invoke("update_signature_file_manual", new object [] {
                file_context,
                flg_is_user_defined,
                do_set_active,
                force,
                user_name,
                check_interval});
            return ((ASMSignatureFileUpdateReturnValue)(results[0]));
        }
 public System.IAsyncResult Beginupload_policy(string policy_name,ASMFileTransferContext file_context, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("upload_policy", new object[] {
     policy_name,
     file_context}, callback, asyncState);
 }
        public void upload_policy(
		string policy_name,
		ASMFileTransferContext file_context
	)
        {
            this.Invoke("upload_policy", new object [] {
                policy_name,
                file_context});
        }