本文整理汇总了C#中SimiasWebService类的典型用法代码示例。如果您正苦于以下问题:C# SimiasWebService类的具体用法?C# SimiasWebService怎么用?C# SimiasWebService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SimiasWebService类属于命名空间,在下文中一共展示了SimiasWebService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ResetPassPhraseDialog
public ResetPassPhraseDialog(SimiasWebService simiasws, iFolderWebService ifws)
: base()
{
this.simws= simiasws;
this.ifws = ifws;
SetupDialog();
}
示例2: MigrationWindow
public MigrationWindow(iFolderWebService ifWebService, SimiasWebService simiasWebService)
{
windowActive = false;
this.ifWebService = ifWebService;
this.simiasWebService = simiasWebService;
InitializeComponent();
}
示例3: ServerDetails
public ServerDetails(SimiasWebService simiasWebService, iFolderWebService ifolderWebService, Domain domain)
{
InitializeComponent();
this.simiasWebService = simiasWebService;
ifWebService = ifolderWebService;
this.domain = domain;
}
示例4: VerifyPassphraseDialog
public VerifyPassphraseDialog(string domainID, SimiasWebService simws)
{
this.DomainID = domainID;
this.simws = simws;
this.resManager = new System.Resources.ResourceManager(typeof(VerifyPassphraseDialog));
InitializeComponent();
}
示例5: EnterPassPhraseDialog
public EnterPassPhraseDialog(string domainID, SimiasWebService simiasws)
: base()
{
this.DomainID = domainID;
this.simws = simiasws;
SetupDialog();
}
示例6: SinglePageWizard
public SinglePageWizard(iFolderWebService ifws, SimiasWebService simws)
{
InitializeComponent();
this.ifWebService = ifws;
this.simiasWebService = simws;
SinglePageWizard.log = iFolderLogManager.GetLogger(typeof(SinglePageWizard));
}
示例7: ResetPassphrase
public ResetPassphrase(SimiasWebService simws, iFolderWebService ifws)
{
InitializeComponent();
this.simws = simws;
this.ifws = ifws;
GetLoggedInDomains();
}
示例8: PrefsAccountsPage
public PrefsAccountsPage( Gtk.Window topWindow )
: base()
{
this.topLevelWindow = topWindow;
this.simiasManager = Util.GetSimiasManager();
this.simws = new SimiasWebService();
simws.Url = simiasManager.WebServiceUri.ToString() +
"/Simias.asmx";
LocalService.Start(simws, simiasManager.WebServiceUri, simiasManager.DataPath);
curDomains = new Hashtable();
InitializeWidgets();
domainController = DomainController.GetDomainController();
if (domainController != null)
{
domainController.DomainAdded +=
new DomainAddedEventHandler(OnDomainAddedEvent);
domainController.DomainDeleted +=
new DomainDeletedEventHandler(OnDomainDeletedEvent);
domainController.DomainLoggedIn +=
new DomainLoggedInEventHandler(OnDomainLoggedInEvent);
domainController.DomainLoggedOut +=
new DomainLoggedOutEventHandler(OnDomainLoggedOutEvent);
domainController.DomainActivated +=
new DomainActivatedEventHandler(OnDomainActivatedEvent);
domainController.DomainInactivated +=
new DomainInactivatedEventHandler(OnDomainInactivatedEvent);
domainController.NewDefaultDomain +=
new DomainNewDefaultEventHandler(OnNewDefaultDomainEvent);
domainController.DomainInGraceLoginPeriod +=
new DomainInGraceLoginPeriodEventHandler(OnDomainInGraceLoginPeriodEvent);
}
detailsDialogs = new Hashtable();
this.Realized += new EventHandler(OnRealizeWidget);
}
示例9: ImportKeysDialog
public ImportKeysDialog(iFolderWebService ifws, SimiasWebService simws)
: base()
{
this.ifws = ifws;
this.simws = simws;
SetupDialog();
}
示例10: 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;
}
示例11: EnterPassphrasePage
public EnterPassphrasePage(iFolderWebService ifws, SimiasWebService simws, Manager simiasManager)
{
InitializeComponent();
this.simiasWebService = simws;
this.ifolderWebService = ifws;
this.simiasManager = simiasManager;
}
示例12: 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;
}
示例13: ExportKeysDialog
public ExportKeysDialog(iFolderWebService ifws, SimiasWebService simws)
: base()
{
this.ifws = ifws;
this.simws = simws;
this.DomainID = DomainID;
SetupDialog();
}
示例14: MigrationDialog
public MigrationDialog( Gtk.Window topWindow, iFolderWebService ifws, SimiasWebService simws, bool ShowForMerge, String ifolderName)
{
this.Modal = false;
this.iFolderName = ifolderName;
curDomains = new Hashtable();
CreateWidgets();
PopulateWidgets();
}
示例15: MigrationWindow
public MigrationWindow( Gtk.Window topWindow, iFolderWebService ifws, SimiasWebService simws)
: base(Util.GS("iFolder Migration"))
{
this.topLevelWindow = topWindow;
this.Modal = false;
this.ifws = ifws;
this.simws = simws;
curDomains = new Hashtable();
CreateWidgets();
PopulateWidgets();
}