Name

ContextStaticAttribute

Synopsis

This attribute designates that a static field should not be shared between contexts. Each context accesses a separate copy of this field and is able to set and retrieve values without accidentally overwriting data set by another context. Just as thread-local storage is used to store data in a per-thread fashion, this is used to store static data in a per-context fashion.

public class ContextStaticAttribute : Attribute {
// Public Constructors
   public ContextStaticAttribute( );
}

Hierarchy

Object Attribute ContextStaticAttribute

Valid On

Field

Get C# in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.