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


C# ActionCall.HasAttribute方法代码示例

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


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

示例1: addCreationPermission

 private void addCreationPermission(ActionCall action)
 {
     // If there are no other permissioning, add one
     if (!action.HasAttribute<AuthorizationAttribute>())
     {
         var permissionName = CrudRules.SecurableNameForCreation(_entityType);
         action.ParentChain().Authorization.AddRole(permissionName);
     }
 }
开发者ID:DarthFubuMVC,项目名称:FubuFastPack,代码行数:9,代码来源:CrudActionModifier.cs

示例2: ActionIsExempted

        public static bool ActionIsExempted(ActionCall call)
        {
            if (call.HasAttribute<NotAuthenticatedAttribute>()) return true;

            if (call.InputType() != null && call.InputType().HasAttribute<NotAuthenticatedAttribute>())
            {
                return true;
            }

            return false;
        }
开发者ID:,项目名称:,代码行数:11,代码来源:

示例3: IsPassThrough

        public static bool IsPassThrough(ActionCall call)
        {
            if (call.HasAttribute<PassThroughAuthenticationAttribute>()) return true;

            if (call.InputType() != null && call.InputType().HasAttribute<PassThroughAuthenticationAttribute>())
            {
                return true;
            }

            return false;
        }
开发者ID:joemcbride,项目名称:fubumvc,代码行数:11,代码来源:ExcludePassThroughAuthentication.cs

示例4: ActionIsIncluded

        public static bool ActionIsIncluded(ActionCall call)
        {
            if (call.HasAttribute<JsonBindingAttribute>()) return true;

            if (call.InputType() != null && call.InputType().HasAttribute<JsonBindingAttribute>())
            {
                return true;
            }

            return false;
        }
开发者ID:DarthFubuMVC,项目名称:FubuMVC.Json,代码行数:11,代码来源:IgnoreJsonBindingAttribute.cs

示例5: Matches

 public bool Matches(ActionCall call, IConfigurationObserver log)
 {
     return call.HasAttribute<FubuDiagnosticsAttribute>();
 }
开发者ID:JordanZaerr,项目名称:FubuMVC.Diagnostics,代码行数:4,代码来源:DiagnosticUrlPolicy.cs

示例6: Matches

 public bool Matches(ActionCall call)
 {
     return call.HasAttribute<UrlPatternAttribute>();
 }
开发者ID:NeilSorensen,项目名称:fubumvc,代码行数:4,代码来源:UrlPatternAttributePolicy.cs

示例7: modifyEditAction

        private void modifyEditAction(ActionCall action)
        {
            // At least one Crud controller 'ignores' its Edit method
            if (action == null) return;

            var chain = action.ParentChain();
            chain.Route = action.BuildRouteForPattern("{0}/{{Id}}".ToFormat(_routeName));

            // If there are no
            if (!action.HasAttribute<AuthorizationAttribute>())
            {
                var permissionName = CrudRules.SecurableNameForViewing(_entityType);
                chain.Authorization.AddRole(permissionName);
            }

            // apply data restrictions
            var policyType = typeof(RestrictedDataAuthorizationPolicy<>).MakeGenericType(_entityType);
            chain.Authorization.AddPolicy(policyType);

            action.AddAfter(Wrapper.For<CrudUrlBehavior>());
        }
开发者ID:DarthFubuMVC,项目名称:FubuFastPack,代码行数:21,代码来源:CrudActionModifier.cs


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