CmisSync.EditWizardController.EditWizardController C# (CSharp) Method

EditWizardController() public method

public EditWizardController ( EditType type, CmisRepoCredentials credentials, string name, string remotePath, List ignores, string localPath ) : System
type EditType
credentials CmisRepoCredentials
name string
remotePath string
ignores List
localPath string
return System
        public EditWizardController (EditType type, CmisRepoCredentials credentials, string name, string remotePath, List<string> ignores, string localPath) : base ("EditWizard")
        {
            FolderName = name;
            this.Credentials = credentials;
            this.remotePath = remotePath;
            this.Ignores = new List<string>(ignores);
            this.localPath = localPath;
            this.type = type;

            Initialize ();

            Controller.OpenWindowEvent += () =>
            {
                InvokeOnMainThread (() =>
                {
                    this.Window.OrderFrontRegardless ();
                });
            };
        }
        // Shared initialization code

Same methods

EditWizardController::EditWizardController ( IntPtr handle ) : System
EditWizardController::EditWizardController ( MonoMac.Foundation.NSCoder coder ) : System