in src/BundledBindings/EventGridTriggerBinding.cs [17:26]
public override BindingInformation? ExtractBinding(AttributeAst attribute, ParameterAst parameter)
{
BindingInformation bindingInformation = new BindingInformation();
bindingInformation.Name = parameter.Name.VariablePath.UserPath;
bindingInformation.Direction = BindingDirection;
bindingInformation.Type = BindingType;
return bindingInformation;
}