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