コード例 #1
0
        public void save_partial_configuration(
		string filename,
		SystemConfigSyncSaveMode save_flag,
		SystemConfigSyncConfigExcludeComponent [] features_to_exclude,
		SystemConfigSyncConfigIncludeComponent [] features_to_include
	)
        {
            this.Invoke("save_partial_configuration", new object [] {
                filename,
                save_flag,
                features_to_exclude,
                features_to_include});
        }
コード例 #2
0
        public void save_partial_encrypted_configuration(
		string filename,
		string passphrase,
		SystemConfigSyncConfigExcludeComponent [] features_to_exclude,
		SystemConfigSyncConfigIncludeComponent [] features_to_include
	)
        {
            this.Invoke("save_partial_encrypted_configuration", new object [] {
                filename,
                passphrase,
                features_to_exclude,
                features_to_include});
        }
コード例 #3
0
 public System.IAsyncResult Beginsave_partial_encrypted_configuration(string filename,string passphrase,SystemConfigSyncConfigExcludeComponent [] features_to_exclude,SystemConfigSyncConfigIncludeComponent [] features_to_include, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("save_partial_encrypted_configuration", new object[] {
     filename,
     passphrase,
     features_to_exclude,
     features_to_include}, callback, asyncState);
 }