19 references to HttpResponseSubstitutionCallback
System.Web (18)
Abstractions\HttpResponseBase.cs (1)
509public virtual void WriteSubstitution(HttpResponseSubstitutionCallback callback) {
Abstractions\HttpResponseWrapper.cs (1)
476public override void WriteSubstitution(HttpResponseSubstitutionCallback callback) {
Cache\SubstitutionResponseElement.cs (5)
13private HttpResponseSubstitutionCallback _callback; 17public HttpResponseSubstitutionCallback Callback { get { return _callback; } } 21public SubstitutionResponseElement(HttpResponseSubstitutionCallback callback) { 39_callback = (HttpResponseSubstitutionCallback) Delegate.CreateDelegate(typeof(HttpResponseSubstitutionCallback), target, _methodName);
HttpResponse.cs (1)
2664public void WriteSubstitution(HttpResponseSubstitutionCallback callback) {
HttpWriter.cs (5)
524private HttpResponseSubstitutionCallback _callback; 531internal HttpResponseSubstitutionCallback Callback { get { return _callback; } } 537internal HttpSubstBlockResponseElement(HttpResponseSubstitutionCallback callback, Encoding encoding, Encoder encoder, IIS7WorkerRequest iis7WorkerRequest) { 553internal HttpSubstBlockResponseElement(HttpResponseSubstitutionCallback callback) { 1170internal void WriteSubstBlock(HttpResponseSubstitutionCallback callback, IIS7WorkerRequest iis7WorkerRequest) {
UI\WebControls\AdPostCacheSubstitution.cs (1)
35HttpResponseSubstitutionCallback callback = new HttpResponseSubstitutionCallback(Render);
UI\WebControls\Substitution.cs (4)
75private HttpResponseSubstitutionCallback GetDelegate(Type targetType, string methodName) { 76return (HttpResponseSubstitutionCallback)Delegate.CreateDelegate( 77typeof(HttpResponseSubstitutionCallback), targetType, methodName); 110HttpResponseSubstitutionCallback callback = null;
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
340public override void WriteSubstitution(HttpResponseSubstitutionCallback callback) {