本文整理汇总了C#中Novell.iFolder.Web.iFolderWebService类的典型用法代码示例。如果您正苦于以下问题:C# iFolderWebService类的具体用法?C# iFolderWebService怎么用?C# iFolderWebService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
iFolderWebService类属于Novell.iFolder.Web命名空间,在下文中一共展示了iFolderWebService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Connecting
public Connecting( iFolderWebService ifws, SimiasWebService simiasWebService, Manager simiasManager, DomainInformation domainInfo, string password, bool rememberPassword )
: this(ifws, simiasWebService, simiasManager, domainInfo, password)
{
this.updatePasswordPreference = true;
this.rememberPassword = rememberPassword;
this.autoAccountEnabled = false;
}
示例2: ServerDetails
public ServerDetails(SimiasWebService simiasWebService, iFolderWebService ifolderWebService, Domain domain)
{
InitializeComponent();
this.simiasWebService = simiasWebService;
ifWebService = ifolderWebService;
this.domain = domain;
}
示例3: SinglePageWizard
public SinglePageWizard(iFolderWebService ifws, SimiasWebService simws)
{
InitializeComponent();
this.ifWebService = ifws;
this.simiasWebService = simws;
SinglePageWizard.log = iFolderLogManager.GetLogger(typeof(SinglePageWizard));
}
示例4: ResetPassphrase
public ResetPassphrase(SimiasWebService simws, iFolderWebService ifws)
{
InitializeComponent();
this.simws = simws;
this.ifws = ifws;
GetLoggedInDomains();
}
示例5: EnterPassphrasePage
public EnterPassphrasePage(iFolderWebService ifws, SimiasWebService simws, Manager simiasManager)
{
InitializeComponent();
this.simiasWebService = simws;
this.ifolderWebService = ifws;
this.simiasManager = simiasManager;
}
示例6: MigrationWindow
public MigrationWindow(iFolderWebService ifWebService, SimiasWebService simiasWebService)
{
windowActive = false;
this.ifWebService = ifWebService;
this.simiasWebService = simiasWebService;
InitializeComponent();
}
示例7: DefaultiFolderPage
public DefaultiFolderPage(iFolderWebService ifws, SimiasWebService simws, DomainInformation domainInfo )
{
this.resManager = new System.Resources.ResourceManager(typeof(Novell.FormsTrayApp.FormsTrayApp));
InitializeComponent();
this.simws = simws;
this.domainInfo = domainInfo;
this.ifws = ifws;
}
示例8: ServerInfo
public ServerInfo(iFolderWebService ifws, Manager simiasManager, DomainInformation domainInfo, string password)
{
InitializeComponent();
this.domainInfo = domainInfo;
this.simiasManager = simiasManager;
this.ifWebService = ifws;
if (password != null)
{
this.password.Text = password;
rememberPassword.Checked = true;
}
int delta = calculateSize(serverLabel2, 0);
delta = calculateSize(userLabel2, delta);
delta = calculateSize(passwordLabel2, delta);
if (delta > 0)
{
serverLabel2.Width = userLabel2.Width = passwordLabel2.Width += delta;
int temp = serverName.Left;
serverName.Left = userName.Left = this.password.Left = rememberPassword.Left = serverLabel2.Left + serverLabel2.Width;
serverName.Width = userName.Width = this.password.Width = rememberPassword.Width -= serverName.Left - temp;
}
}
示例9: Connecting
public Connecting( iFolderWebService ifws, SimiasWebService simiasWebService, Manager simiasManager, string server, string user, string password, bool defaultServer, bool rememberPassword )
: this(ifws, simiasWebService, simiasManager, password)
{
server = server.Trim();
if(!server.StartsWith("http"))
{
server = string.Format("https://{0}",server);
}
UriBuilder UriSchemeForServer = new UriBuilder(server);
string serverName = UriSchemeForServer.Uri.Authority;
if (UriSchemeForServer.Scheme != Uri.UriSchemeHttps)
{
UriSchemeForServer.Scheme = Uri.UriSchemeHttps;
}
if (UriSchemeForServer.Port == 80)
{
UriSchemeForServer.Port = 443;
}
this.server = UriSchemeForServer.ToString();
this.user = user;
this.defaultServer = defaultServer;
this.rememberPassword = rememberPassword;
this.autoAccountEnabled = false;
}
示例10: ExportKeyPage
public ExportKeyPage(iFolderWebService ifws, SimiasWebService simws)
{
InitializeComponent();
this.simiasWebService = simws;
this.ifWebService = ifws;
}
示例11: SinglePageWizard
public SinglePageWizard(iFolderWebService ifws, SimiasWebService simws)
{
InitializeComponent();
this.ifWebService = ifws;
this.simiasWebService = simws;
}
示例12: Preferences
public Preferences(iFolderWebService ifolderWebService, SimiasWebService simiasWebService, Manager simiasManager)
{
InitializeComponent();
defaultInterval.TextChanged += new EventHandler(defaultInterval_ValueChanged);
ifWebService = ifolderWebService;
this.simiasWebService = simiasWebService;
this.simiasManager = simiasManager;
{
}
int delta = calculateSize(label1, 0);
if (delta > 0)
{
groupBox1.Height += 8 * (int)Math.Ceiling((float)delta / (float)label1.Width);
}
this.StartPosition = FormStartPosition.CenterScreen;
}
示例13: AccountWizard
public AccountWizard( iFolderWebService ifWebService, SimiasWebService simiasWebService, Manager simiasManager, bool firstAccount, Preferences prefs )
{
this.simiasManager = simiasManager;
this.simiasWebService = simiasWebService;
this.ifWebService = ifWebService;
this.prefs = prefs;
InitializeComponent();
this.welcomePage = new WelcomePage();
this.serverPage = new ServerPage( firstAccount );
this.identityPage = new IdentityPage();
this.verifyPage = new VerifyPage( firstAccount );
this.completionPage = new CompletionPage();
this.defaultiFolderPage = new DefaultiFolderPage(this.ifWebService, this.simiasWebService, this.domainInfo);
this.welcomePage.DescriptionText = Resource.GetString("WelcomePageDescription");
this.welcomePage.ActionText = Resource.GetString("WelcomePageAction");
this.welcomePage.Location = new System.Drawing.Point(0, 0);
this.welcomePage.Name = Resource.GetString("WelcomePageName");
this.welcomePage.Size = new System.Drawing.Size(496, 304);
this.welcomePage.TabIndex = 1;
this.welcomePage.WelcomeTitle = Resource.GetString("WelcomePageTitle");
this.serverPage.HeaderTitle = Resource.GetString("ServerPageHeaderTitle");
this.serverPage.Location = new System.Drawing.Point(0, 0);
this.serverPage.Name = Resource.GetString("ServerPageName");
this.serverPage.Size = new System.Drawing.Size(496, 304);
this.serverPage.TabIndex = 1;
this.identityPage.HeaderTitle = Resource.GetString("IdentityPageHeaderTitle");
this.identityPage.Location = new System.Drawing.Point(0, 0);
this.identityPage.Name = Resource.GetString("IdentityPageName");
this.identityPage.Size = new System.Drawing.Size(496, 304);
this.identityPage.TabIndex = 1;
this.verifyPage.HeaderTitle = Resource.GetString("VerifyPageHeaderTitle");
this.verifyPage.Location = new System.Drawing.Point(0, 0);
this.verifyPage.Name = Resource.GetString("VerifyPageName");
this.verifyPage.Size = new System.Drawing.Size(496, 304);
this.verifyPage.TabIndex = 1;
this.defaultiFolderPage.Name = "defaultiFolderPage";
this.defaultiFolderPage.Location = new System.Drawing.Point(0, 0);
this.defaultiFolderPage.Size = new System.Drawing.Size(496, 304);
this.defaultiFolderPage.HeaderTitle = Resource.GetString("DefaultiFolder");
this.completionPage.DescriptionText = Resource.GetString("CompletionPageDT");
this.completionPage.Location = new System.Drawing.Point(0, 0);
this.completionPage.Name = "completionPage";
this.completionPage.Size = new System.Drawing.Size(496, 304);
this.completionPage.TabIndex = 1;
this.completionPage.WelcomeTitle = Resource.GetString("CompletionPageWT");
this.Controls.Add(this.welcomePage);
this.Controls.Add(this.serverPage);
this.Controls.Add(this.identityPage);
this.Controls.Add(this.verifyPage);
this.Controls.Add(this.defaultiFolderPage);
this.Controls.Add(this.completionPage);
try
{
this.Icon = new Icon(Path.Combine(Application.StartupPath, @"res\ifolder_16.ico"));
}
catch {}
pages = new BaseWizardPage[maxPages];
pages[0] = this.welcomePage;
pages[1] = this.serverPage;
pages[2] = this.identityPage;
pages[3] = this.verifyPage;
pages[4] = this.defaultiFolderPage;
pages[5] = this.completionPage;
try
{
Image image = Image.FromFile(Path.Combine(Application.StartupPath, @"res\ifolder_account_wiz.png"));
this.welcomePage.Watermark = image;
this.completionPage.Watermark = image;
image = Image.FromFile(Path.Combine(Application.StartupPath, @"res\ifolder-add-account48.png"));
this.serverPage.Thumbnail = image;
this.verifyPage.Thumbnail = image;
this.identityPage.Thumbnail = image;
this.defaultiFolderPage.Thumbnail = image;
}
catch {}
foreach (BaseWizardPage page in pages)
{
page.Hide();
}
pages[0].ActivatePage(0);
}
示例14: DomainSelectionPage
public DomainSelectionPage(iFolderWebService ifws, SimiasWebService simws)
{
InitializeComponent();
this.ifWebService = ifws;
this.simiasWebService = simws;
}
示例15: EnterPassphraseDialog
public EnterPassphraseDialog(string domainID, SimiasWebService simws, iFolderWebService ifws)
: this(domainID, simws)
{
this.ifws = ifws;
}