NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SurrogateSelector.ChainSelector

Adds another selector to check if we don't have match within this selector.

[Visual Basic]
Overridable Public Sub ChainSelector( _
   ByVal selector As ISurrogateSelector _
)
[C#]
public virtual void ChainSelector(
   ISurrogateSelector selector
);
[C++]
public: virtual void ChainSelector(
   ISurrogateSelector* selector
);
[JScript]
public function ChainSelector(
   selector : ISurrogateSelector
);

Parameters

selector
The surrogate selector to add.

Exceptions

Exception Type Condition
ArgumentException The selector parameter is a null reference (in Visual Basic Nothing).
SerializationException The selector is already on the list of selectors.

Remarks

The logic is: "Add this onto the list as the first thing that you check after yourself."

See Also

SurrogateSelector Class | SurrogateSelector Members | System.Runtime.Serialization Namespace