13 references to ISuspendibleRegisteredObject
System.Web (13)
Hosting\HostingEnvironment.cs (4)
888ISuspendibleRegisteredObject suspendibleObject = obj as ISuspendibleRegisteredObject; 909ISuspendibleRegisteredObject suspendibleObject = obj as ISuspendibleRegisteredObject;
Hosting\SuspendManager.cs (9)
21private readonly ConcurrentDictionary<ISuspendibleRegisteredObject, object> _registeredObjects = new ConcurrentDictionary<ISuspendibleRegisteredObject, object>(); 23public void RegisterObject(ISuspendibleRegisteredObject o) { 28public void UnregisterObject(ISuspendibleRegisteredObject o) { 30((IDictionary<ISuspendibleRegisteredObject, object>)_registeredObjects).Remove(o); 41private static SuspendState SuspendImpl(ICollection<ISuspendibleRegisteredObject> allRegisteredObjects) { 112private readonly ICollection<ISuspendibleRegisteredObject> _suspendibleObjects; 118public SuspendState(ICollection<ISuspendibleRegisteredObject> suspendibleObjects) { 124foreach (ISuspendibleRegisteredObject suspendibleObject in _suspendibleObjects) {