代码搜索:handler
找到约 10,000 项符合「handler」的源代码
代码结果 10,000
www.eeworm.com/read/127116/14377135
java handler.java
package com.javapatterns.chainofresp;
public abstract class Handler
{
/**
* @link aggregation
* @supplierCardinality 0..1
*/
protected Handler successor;
public
www.eeworm.com/read/124873/14531866
cs handler.cs
using System.Web;
namespace Acme {
public class SimpleHandler : IHttpHandler {
public void ProcessRequest(HttpContext context) {
context.Response.Write("Hello World!");
www.eeworm.com/read/124873/14531900
vb handler.vb
Imports System.Web
Namespace Acme
Public Class SimpleHandlerVB : Implements IHttpHandler
Public Sub ProcessRequest(Context As HttpContext) Implements IHttpHandler.ProcessReq
www.eeworm.com/read/221293/14747042
class handler.class
www.eeworm.com/read/221293/14747044