Context.RegisterDynamicProperty Method
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Function RegisterDynamicProperty ( _ prop As IDynamicProperty, _ obj As ContextBoundObject, _ ctx As Context _ ) As Boolean 'Usage Dim prop As IDynamicProperty Dim obj As ContextBoundObject Dim ctx As Context Dim returnValue As Boolean returnValue = Context.RegisterDynamicProperty(prop, obj, ctx)
public static boolean RegisterDynamicProperty ( IDynamicProperty prop, ContextBoundObject obj, Context ctx )
public static function RegisterDynamicProperty ( prop : IDynamicProperty, obj : ContextBoundObject, ctx : Context ) : boolean
Parameters
- prop
The dynamic property to register.
- obj
The object/proxy for which the property is registered.
- ctx
The context for which the property is registered.
Return Value
true if the property was successfully registered; otherwise, false.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 a null reference (Nothing in Visual Basic), 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 a null reference (Nothing in Visual Basic).
If ctx is not a null reference (Nothing in Visual Basic), obj must be a null reference (Nothing in Visual Basic) and all calls entering and leaving the context are intercepted.
If both ctx and obj are a null reference (Nothing in Visual Basic), all calls entering and leaving all contexts are intercepted.
- SecurityPermission for plugging code into the CLR infrastructure. Associated enumeration: SecurityPermissionFlag.Infrastructure.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.