当前位置: 首页>>代码示例>>C#>>正文


C# SimiasWebService类代码示例

本文整理汇总了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();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:ResetPassPhraseDialog.cs

示例2: MigrationWindow

 public MigrationWindow(iFolderWebService ifWebService, SimiasWebService simiasWebService)
 {
     windowActive = false;
        this.ifWebService = ifWebService;
        this.simiasWebService = simiasWebService;
        InitializeComponent();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:MigrationWindow.cs

示例3: ServerDetails

 public ServerDetails(SimiasWebService simiasWebService, iFolderWebService ifolderWebService, Domain domain)
 {
     InitializeComponent();
        this.simiasWebService = simiasWebService;
        ifWebService = ifolderWebService;
        this.domain = domain;
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:ServerDetails.cs

示例4: VerifyPassphraseDialog

 public VerifyPassphraseDialog(string domainID, SimiasWebService simws)
 {
     this.DomainID = domainID;
        this.simws = simws;
        this.resManager = new System.Resources.ResourceManager(typeof(VerifyPassphraseDialog));
        InitializeComponent();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:VerifyPassphraseDialog.cs

示例5: EnterPassPhraseDialog

 public EnterPassPhraseDialog(string domainID, SimiasWebService simiasws)
     : base()
 {
     this.DomainID = domainID;
     this.simws = simiasws;
        SetupDialog();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:EnterPassPhraseDialog.cs

示例6: SinglePageWizard

 public SinglePageWizard(iFolderWebService ifws, SimiasWebService simws)
 {
     InitializeComponent();
     this.ifWebService = ifws;
     this.simiasWebService = simws;
        SinglePageWizard.log = iFolderLogManager.GetLogger(typeof(SinglePageWizard));
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:SinglePageWizard.cs

示例7: ResetPassphrase

 public ResetPassphrase(SimiasWebService simws, iFolderWebService ifws)
 {
     InitializeComponent();
        this.simws = simws;
     this.ifws = ifws;
        GetLoggedInDomains();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:ResetPassphrase.cs

示例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);
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:34,代码来源:PrefsAccountsPage.cs

示例9: ImportKeysDialog

 public ImportKeysDialog(iFolderWebService ifws, SimiasWebService simws)
     : base()
 {
     this.ifws = ifws;
        this.simws = simws;
        SetupDialog();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:ImportKeysDialog.cs

示例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;
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:Connecting.cs

示例11: EnterPassphrasePage

 public EnterPassphrasePage(iFolderWebService ifws, SimiasWebService simws, Manager simiasManager)
 {
     InitializeComponent();
     this.simiasWebService = simws;
     this.ifolderWebService = ifws;
     this.simiasManager = simiasManager;
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:7,代码来源:EnterPassphrasePage.cs

示例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;
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:8,代码来源:DefaultiFolderPage.cs

示例13: ExportKeysDialog

 public ExportKeysDialog(iFolderWebService ifws, SimiasWebService simws)
     : base()
 {
     this.ifws = ifws;
        this.simws = simws;
        this.DomainID = DomainID;
        SetupDialog();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:8,代码来源:ExportKeysDialog.cs

示例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();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:8,代码来源:MigrationDialog.cs

示例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();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:11,代码来源:MigrationWindow.cs


注:本文中的SimiasWebService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。