3 writes to previousContext
System.Drawing (3)
commonui\System\Drawing\Graphics.cs (3)
379
this.
previousContext
= context;
4399
this.
previousContext
= context;
4411
this.
previousContext
= context.Previous;
9 references to previousContext
System.Drawing (9)
commonui\System\Drawing\Graphics.cs (9)
375
while(this.
previousContext
!= null) {
377
GraphicsContext context = this.
previousContext
.Previous;
378
this.
previousContext
.Dispose();
4149
GraphicsContext context = this.
previousContext
;
4394
if (this.
previousContext
!= null) {
4396
context.Previous = this.
previousContext
;
4397
this.
previousContext
.Next = context;
4406
Debug.Assert(this.
previousContext
!= null, "Trying to restore a context when the stack is empty");
4407
GraphicsContext context = this.
previousContext
;