• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# SimiasWebService类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中SimiasWebService的典型用法代码示例。如果您正苦于以下问题:C# SimiasWebService类的具体用法?C# SimiasWebService怎么用?C# SimiasWebService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



SimiasWebService类属于命名空间,在下文中一共展示了SimiasWebService类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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


示例16: iFolderPropSharingPage

 public iFolderPropSharingPage( Gtk.Window topWindow,
   iFolderWebService iFolderWS,
   SimiasWebService SimiasWS)
     : base()
 {
     this.ifws = iFolderWS;
        this.simws = SimiasWS;
        this.topLevelWindow = topWindow;
        curUsers = new Hashtable();
        memberFullNames = new Hashtable();
        duplicateMembers = new Hashtable();
        InitializeWidgets();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:13,代码来源:iFolderPropSharingPage.cs


示例17: PrefsAccountsPage

 public PrefsAccountsPage( Gtk.Window topWindow )
     : base()
 {
     this.topLevelWindow = topWindow;
        this.simiasManager = Util.GetSimiasManager();
        string localServiceUrl = simiasManager.WebServiceUri.ToString();
        ifws = new iFolderWebService();
        ifws.Url = localServiceUrl + "/iFolder.asmx";
        LocalService.Start(ifws, simiasManager.WebServiceUri, simiasManager.DataPath);
        this.simws = new SimiasWebService();
        simws.Url = simiasManager.WebServiceUri.ToString() +
      "/Simias.asmx";
        LocalService.Start(simws, simiasManager.WebServiceUri, simiasManager.DataPath);
        ClientUpgradeDialog = null;
        this.ClientUpgradeStatus = null;
        this.NewClientVersion = null;
        this.NewClientDomainID = null;
        curDomains = new Hashtable();
        removedDomains = new Hashtable();
        InitializeWidgets();
        domainProviderUI = DomainProviderUI.GetDomainProviderUI();
        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);
     domainController.DomainClientUpgradeAvailable +=
      new DomainClientUpgradeAvailableEventHandler(OnClientUpgradeAvailableEvent);
        }
        detailsDialogs = new Hashtable();
        this.Realized += new EventHandler(OnRealizeWidget);
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:46,代码来源:PrefsAccountsPage.cs


示例18: AddAccountWizard

 public AddAccountWizard(SimiasWebService simws)
     : base(WindowType.Toplevel)
 {
     this.Title = Util.GS("iFolder Account Assistant");
        this.Resizable = false;
        this.Modal = true;
        this.WindowPosition = Gtk.WindowPosition.Center;
        this.Icon = new Gdk.Pixbuf(Util.ImagesPath("ifolder24.png"));
        this.simws = simws;
        domainController = DomainController.GetDomainController();
        ConnectedDomain = null;
        WaitDialog = null;
        this.Add(CreateWidgets());
        ControlKeyPressed = false;
        KeyPressEvent += new KeyPressEventHandler(KeyPressHandler);
        KeyReleaseEvent += new KeyReleaseEventHandler(KeyReleaseHandler);
        SetUpButtons();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:18,代码来源:AddAccountWizard.cs


示例19: iFolderUserSelector

 public iFolderUserSelector( Gtk.Window parent,
  SimiasWebService SimiasWS,
  string domainID)
     : base()
 {
     this.Title = Util.GS("Select Users");
        if (SimiasWS == null)
     throw new ApplicationException("SimiasWebService was null");
        this.simws = SimiasWS;
        this.domainID = domainID;
        this.HasSeparator = false;
        this.Resizable = true;
        this.Modal = true;
        if(parent != null)
     this.TransientFor = parent;
        InitializeWidgets();
        this.Realized += new EventHandler(OnRealizeWidget);
        searchTimeoutID = 0;
        selectedUsers = new Hashtable();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:20,代码来源:iFolderUserSelector.cs


示例20: MigrationWizard

 public MigrationWizard(string User, string path, iFolderWebService ifws, SimiasWebService simws, MigrationWindow page, bool encrypted)
     : base(WindowType.Toplevel)
 {
     this.Title = Util.GS("iFolder Migration Assistant");
        this.Resizable = false;
        this.WindowPosition = Gtk.WindowPosition.Center;
        this.location = path;
        prevLocation = "";
        this.ifdata = iFolderData.GetData();
        this.ifws = ifws;
        this.simws = simws;
        this.Uname = User;
        this.page = page;
        this.Icon = new Gdk.Pixbuf(Util.ImagesPath("ifolder16.png"));
        this.alreadyEncrypted = encrypted;
        domainController = DomainController.GetDomainController();
        WaitDialog = null;
        this.Add(CreateWidgets());
        ControlKeyPressed = false;
        KeyPressEvent += new KeyPressEventHandler(KeyPressHandler);
        KeyReleaseEvent += new KeyReleaseEventHandler(KeyReleaseHandler);
        SetUpButtons();
 }
开发者ID:RoDaniel,项目名称:featurehouse,代码行数:23,代码来源:MigrationWizard.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# SimpleActionExecuteEventArgs类代码示例发布时间:2022-05-24
下一篇:
C# SimInstruction类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap