public static bool HasValidWebJobSdkTriggerAttribute()

in src/Microsoft.NET.Sdk.Functions.Generator/MethodInfoExtensions.cs [22:27]


        public static bool HasValidWebJobSdkTriggerAttribute(this MethodDefinition method)
        {
            var hasNoAutomaticTrigger = method.HasNoAutomaticTriggerAttribute();
            var hasTrigger = method.HasTriggerAttribute();
            return (hasNoAutomaticTrigger || hasTrigger) && !(hasNoAutomaticTrigger && hasTrigger);
        }