BaseChannelObjectWithProperties Class
Provides a base implementation of a channel object that wants to provide a dictionary interface to its properties.
For a list of all members of this type, see BaseChannelObjectWithProperties Members.
System.Object
System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties
System.Runtime.Remoting.Channels.BaseChannelSinkWithProperties
System.Runtime.Remoting.Channels.BaseChannelWithProperties
[Visual Basic] MustInherit Public Class BaseChannelObjectWithProperties Implements IDictionary, ICollection, IEnumerable [C#] public abstract class BaseChannelObjectWithProperties : IDictionary, ICollection, IEnumerable [C++] public __gc __abstract class BaseChannelObjectWithProperties : public IDictionary, ICollection, IEnumerable [JScript] public abstract class BaseChannelObjectWithProperties implements IDictionary, ICollection, IEnumerable
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Remarks
BaseChannelObjectWithProperties is the base class for BaseChannelWithProperties and BaseChannelSinkWithProperties. BaseChannelWithProperties and BaseChannelSinkWithProperties can be used as the base classes for channels and channel sinks that want to provide named properties.
BaseChannelObjectWithProperties handles the complex task of asking a channel object for its properties.
Note This class makes a link demand and an inheritance demand at the class level. A SecurityException is thrown when either the immediate caller or the derived class does not have infrastructure permission. For details about security demands, see Link Demands and Inheritance Demands.
Notes to Inheritors: When you inherit from BaseChannelObjectWithProperties, you must override the Keys property and the Item property.
Requirements
Namespace: System.Runtime.Remoting.Channels
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
.NET Framework Security:
- SecurityPermission for operating with infrastructure code. Demand value: SecurityAction.LinkDemand; Permission Value: SecurityPermissionFlag.Infrastructure
- SecurityPermission for operating with infrastructure code. Demand value: SecurityAction.InheritanceDemand; Permission Value: SecurityPermissionFlag.Infrastructure
See Also
BaseChannelObjectWithProperties Members | System.Runtime.Remoting.Channels Namespace