Skip to content

Instantly share code, notes, and snippets.

@idavis
Created May 21, 2010 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idavis/408452 to your computer and use it in GitHub Desktop.
Save idavis/408452 to your computer and use it in GitHub Desktop.
if (bindings == null)
{
return false;
}
lock(_handleMissingBindingLockObject)
{
if (!CanResolve(request))
{
bindings.Map(binding => binding.IsImplicit = true);
AddBindings(bindings);
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment