LogicalCallContext Class
Provides a set of properties that are carried with the execution code path during remote method calls.
Assembly: mscorlib (in mscorlib.dll)
The LogicalCallContext type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Clone | Creates a new object that is a copy of the current instance. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | FreeNamedDataSlot | Empties a data slot with the specified name. |
![]() | GetData | Retrieves an object associated with the specified name from the current instance. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetObjectData | Populates a specified SerializationInfo with the data needed to serialize the current LogicalCallContext. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | SetData | Stores the specified object in the current instance, and associates it with the specified name. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The LogicalCallContext class is a version of the CallContext class that is used during method calls to remote application domains. The CallContext is a specialized collection object similar to a thread local storage for method calls, and provides data slots that are unique to each logical thread of execution. The slots are not shared across call contexts on other logical threads. Objects can be added to the CallContext as it travels down and up the execution code path, and examined by various objects along the path.
When a remote method call is made to an object in another AppDomain, the CallContext class generates a LogicalCallContext that travels along with the remote call. Only objects that expose the ILogicalThreadAffinative interface and are stored in the CallContext are propagated outside the AppDomain in a LogicalCallContext. Objects that do not support this interface are not transmitted in LogicalCallContext instances with remote method calls.
Note |
|---|
This class makes a link demand. A SecurityException is thrown if the immediate caller does not have infrastructure permission. See Link Demands for more information. |
- SecurityPermission
for operating with infrastructure code. Demand value: SecurityAction::LinkDemand; Permission Value: SecurityPermissionFlag::Infrastructure
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
