1 instantiation of RootedObjects
System.Web (1)
RootedObjects.cs (1)
91return new RootedObjects();
20 references to RootedObjects
System.Web (20)
Hosting\IPipelineRuntime.cs (11)
389RootedObjects objects = RootedObjects.FromPointer(rootedObjectsPointer); 413RootedObjects rootObj = RootedObjects.FromPointer(pManagedRootedObjects); 428IPrincipal principal = RootedObjects.FromPointer(pRootedObjects).Principal; 451IPrincipal principal = RootedObjects.FromPointer(pRootedObjects).Principal; 457RootedObjects root = RootedObjects.FromPointer(rootedObjectsPointer); 503RootedObjects root; 513root = RootedObjects.Create(); 522root = RootedObjects.FromPointer(rootedObjectsPointer);
HttpContext.cs (2)
1324private RootedObjects _rootedObjects; 1326internal RootedObjects RootedObjects {
RootedObjects.cs (5)
90public static RootedObjects Create() { 129public static RootedObjects FromPointer(IntPtr pointer) { 131return (RootedObjects)handle.Target; 228private readonly RootedObjects _rootedObjects; // might be null if this is a dummy token 230internal ActivityIdToken(RootedObjects rootedObjects, bool isDestroying) {
WebSocketPipeline.cs (2)
23private readonly RootedObjects _root; 29public WebSocketPipeline(RootedObjects root, HttpContext httpContext, Func<AspNetWebSocketContext, Task> userFunc, string subProtocol) {