Context::RegisterDynamicProperty Method
Registers a dynamic property implementing the IDynamicProperty interface with the remoting service.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::Infrastructure)] public: static bool RegisterDynamicProperty( IDynamicProperty^ prop, ContextBoundObject^ obj, Context^ ctx )
Parameters
- prop
- Type: System.Runtime.Remoting.Contexts::IDynamicProperty
The dynamic property to register.
- obj
- Type: System::ContextBoundObject
The object/proxy for which the property is registered.
- ctx
- Type: System.Runtime.Remoting.Contexts::Context
The context for which the property is registered.
Return Value
Type: System::Booleantrue if the property was successfully registered; otherwise, false.
| Exception | Condition |
|---|---|
| ArgumentNullException | Either prop or its name is nullptr, or it is not dynamic (it does not implement IDynamicProperty). |
| ArgumentException | Both an object as well as a context are specified (both obj and ctx are not nullptr). |
Based on obj and ctx, prop is asked to contribute a sink that is placed at some location in the path of remoting calls. If multiple properties are registered, their sinks will be called in an arbitrary order that can change between calls.
If obj is not nullptr, and then if it is a proxy, all calls made on the proxy are intercepted. Otherwise, if obj is a real object, all calls on the object are intercepted. The ctx parameter must be nullptr.
If ctx is not nullptr, obj must be nullptr and all calls entering and leaving the context are intercepted.
If both ctx and obj are nullptr, all calls entering and leaving all contexts are intercepted.
- SecurityPermission
for plugging code into the CLR infrastructure. Associated enumeration: 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.