This documentation is archived and is not being maintained.

MessageSurrogateFilter Delegate

Determines whether the RemotingSurrogateSelector class should ignore a particular IMessage property while creating an ObjRef for a MarshalByRefObject class.

Namespace:  System.Runtime.Remoting.Messaging
Assembly:  mscorlib (in mscorlib.dll)

[ComVisibleAttribute(true)]
public delegate bool MessageSurrogateFilter(
	String^ key, 
	Object^ value
)

Parameters

key
Type: System::String
The key to a particular remoting message property.
value
Type: System::Object
The value of a particular remoting message property.

Return Value

Type: System::Boolean
True if the RemotingSurrogateSelector class should ignore a particular IMessage property while creating an ObjRef for a MarshalByRefObject class.

The MessageSurrogateFilter delegate is intended for use only by the remoting infrastructure of the .NET Framework; you should not instantiate the delegate directly.

The Filter property of the RemotingSurrogateSelector class gets and sets a MessageSurrogateFilter instance.

Each key/value parameter pair is a remoting message property that belongs to the Properties property of the IMessage class.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

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.
Show: