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


C# ICommandContext.OpenUrlInBrowser方法代码示例

本文整理汇总了C#中ICommandContext.OpenUrlInBrowser方法的典型用法代码示例。如果您正苦于以下问题:C# ICommandContext.OpenUrlInBrowser方法的具体用法?C# ICommandContext.OpenUrlInBrowser怎么用?C# ICommandContext.OpenUrlInBrowser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ICommandContext的用法示例。


在下文中一共展示了ICommandContext.OpenUrlInBrowser方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ExecuteShowForumArticles

 public void ExecuteShowForumArticles(ICommandContext context, int? forumId)
 {
     context.OpenUrlInBrowser(
         JanusProtocolDispatcher.FormatURI(
             JanusProtocolResourceType.ArticleList,
             GetForumId(context, forumId).ToString()));
 }
开发者ID:permyakov,项目名称:janus,代码行数:7,代码来源:ForumCommandTarget.cs

示例2: ExecuteEditMessage

		public void ExecuteEditMessage(ICommandContext context, int? messageId)
		{
			context.OpenUrlInBrowser(
				_editUrlTemplate.FormatWith(
					_siteUrl(),
					ForumCommandHelper.GetMessageId(context, messageId)));
		}
开发者ID:rsdn,项目名称:janus,代码行数:7,代码来源:AdminCommandTarget.cs

示例3: ExecuteOpenMessageInJBrowser

		public void ExecuteOpenMessageInJBrowser(ICommandContext context, int? messageId)
		{
			var url = JanusProtocolDispatcher.FormatURI(
				JanusProtocolResourceType.Message,
				ForumCommandHelper.GetMessageId(context, messageId).ToString());

			context.OpenUrlInBrowser(url, UrlBehavior.InternalBrowser);
		}
开发者ID:rsdn,项目名称:janus,代码行数:8,代码来源:ForumMessageCommandTarget.cs

示例4: ExecuteOpenForumOnRsdn

 public void ExecuteOpenForumOnRsdn(
     ICommandContext context, int? forumId)
 {
     context.OpenUrlInBrowser(
         SiteUrlHelper.GetForumUrl(GetForum(context, forumId).Name));
 }
开发者ID:permyakov,项目名称:janus,代码行数:6,代码来源:ForumCommandTarget.cs

示例5: ExecuteOpenMessageRatingOnRsdn

		public void ExecuteOpenMessageRatingOnRsdn(ICommandContext context, int? messageId)
		{
			context.OpenUrlInBrowser(
				SiteUrlHelper.GetRatingUrl(
					ForumCommandHelper.GetMessageId(context, messageId)));
		}
开发者ID:rsdn,项目名称:janus,代码行数:6,代码来源:ForumMessageCommandTarget.cs

示例6: ExecuteOpenViolationReps

 public void ExecuteOpenViolationReps(ICommandContext context)
 {
     context.OpenUrlInBrowser(_openViolationRepsUrl);
 }
开发者ID:permyakov,项目名称:janus,代码行数:4,代码来源:AdminCommandTarget.cs

示例7: ExecuteOpenReasonsEditor

 public void ExecuteOpenReasonsEditor(ICommandContext context)
 {
     context.OpenUrlInBrowser(_openReasonsEditorUrl);
 }
开发者ID:permyakov,项目名称:janus,代码行数:4,代码来源:AdminCommandTarget.cs

示例8: ExecuteModMessage

 public void ExecuteModMessage(ICommandContext context, int? messageId)
 {
     context.OpenUrlInBrowser(
         _modUrlTemplate.FormatStr(
             ForumCommandHelper.GetMessageId(context, messageId)));
 }
开发者ID:permyakov,项目名称:janus,代码行数:6,代码来源:AdminCommandTarget.cs

示例9: ExecuteOpenViolationReps

		public void ExecuteOpenViolationReps(ICommandContext context)
		{
			context.OpenUrlInBrowser(_openViolationRepsUrl.FormatWith(_siteUrl()));
		}
开发者ID:rsdn,项目名称:janus,代码行数:4,代码来源:AdminCommandTarget.cs

示例10: ExecuteOpenReasonsEditor

		public void ExecuteOpenReasonsEditor(ICommandContext context)
		{
			context.OpenUrlInBrowser(_openReasonsEditorUrl.FormatWith(_siteUrl()));
		}
开发者ID:rsdn,项目名称:janus,代码行数:4,代码来源:AdminCommandTarget.cs

示例11: ExecuteOpenLink

        public void ExecuteOpenLink(ICommandContext context)
        {
            var link = (FavoritesLink)context
                .GetRequiredService<IFavoritesDummyFormService>()
                .SelectedEntries.Single();

            if (string.IsNullOrEmpty(link.Url))
                ApplicationManager.Instance.ForumNavigator.SelectMessage(link.MessageId);
            else
                context.OpenUrlInBrowser(link.Link);
        }
开发者ID:permyakov,项目名称:janus,代码行数:11,代码来源:FavoritesCommandTarget.cs

示例12: ExecuteWarnModeratorOnRsdn

 public void ExecuteWarnModeratorOnRsdn(ICommandContext context, int? messageId)
 {
     context.OpenUrlInBrowser(
         RsdnUrlHelper.GetWarnModeratorUrl(
             ForumCommandHelper.GetMessageId(context, messageId)));
 }
开发者ID:permyakov,项目名称:janus,代码行数:6,代码来源:ForumMessageCommandTarget.cs

示例13: ExecuteShowAllFaq

 public void ExecuteShowAllFaq(ICommandContext context)
 {
     context.OpenUrlInBrowser(
         JanusProtocolDispatcher.FormatURI(
             JanusProtocolResourceType.FaqList, "0"));
 }
开发者ID:permyakov,项目名称:janus,代码行数:6,代码来源:ForumsCommandTarget.cs

示例14: ExecuteOpenFileUploadOnRsdn

 public void ExecuteOpenFileUploadOnRsdn(ICommandContext context)
 {
     context.OpenUrlInBrowser(SiteUrlHelper.GetFileUploadUrl());
 }
开发者ID:permyakov,项目名称:janus,代码行数:4,代码来源:ForumsCommandTarget.cs

示例15: ExecuteShowUserRatingOut

        public void ExecuteShowUserRatingOut(ICommandContext context)
        {
            var uid = Config.Instance.SelfId;

            context.OpenUrlInBrowser(
                JanusProtocolDispatcher.FormatURI(
                    JanusProtocolResourceType.UserOutrating, uid.ToString()));
        }
开发者ID:permyakov,项目名称:janus,代码行数:8,代码来源:ForumsCommandTarget.cs


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