Skip to content
Mathew Charles edited this page Jun 28, 2015 · 5 revisions

Welcome to the WebJobs SDK Extensions wiki! This wiki contains pages describing how to author custom binding extensions.

To learn how to write a binding extension, please start here: Binding Extensions Overview.

To run/debug the samples in this repo, do the following:

  • Open the WebJobs.Extensions solution, and set ExtensionsSample as the startup project
  • Set breakpoints in the various job functions in that project. For example, set a breakpoint in TimerSamples.CronJob which will fire based on the configured schedule.
  • F5 to debug
  • You'll see the cron job function is executed on schedule.

You can exercise the other bindings the same way, for example create/modify files in the directory the file trigger sample is monitoring to cause that function to fire, etc. You can also set breakpoints in the binding extension code to see how things work.