e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ProcessProtocolHandler.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.Hosting {
|
|
using System;
|
|
using System.Security.Permissions;
|
|
|
|
public abstract class ProcessProtocolHandler : MarshalByRefObject {
|
|
|
|
protected ProcessProtocolHandler() {
|
|
}
|
|
|
|
|
|
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure)]
|
|
public override Object InitializeLifetimeService(){
|
|
return null; // never expire lease
|
|
}
|
|
|
|
|
|
public abstract void StartListenerChannel(IListenerChannelCallback listenerChannelCallback, IAdphManager AdphManager);
|
|
|
|
|
|
public abstract void StopListenerChannel(int listenerChannelId, bool immediate);
|
|
|
|
|
|
public abstract void StopProtocol(bool immediate);
|
|
}
|
|
|
|
}
|
|
|
|
|