3 writes to _previousContext
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
167
_previousContext
= context;
3409
_previousContext
= context;
3425
_previousContext
= context.Previous;
9 references to _previousContext
System.Drawing.Common (9)
System\Drawing\Graphics.cs (9)
162
while (
_previousContext
is not null)
165
GraphicsContext? context =
_previousContext
.Previous;
166
_previousContext
.Dispose();
3222
GraphicsContext? context =
_previousContext
;
3402
if (
_previousContext
is not null)
3405
context.Previous =
_previousContext
;
3406
_previousContext
.Next = context;
3417
Debug.Assert(
_previousContext
is not null, "Trying to restore a context when the stack is empty");
3418
GraphicsContext? context =
_previousContext
;