 | PostProcessorChain.Contains Method (PostProcessor) |
Determines whether the post-processor chain contains a specific post-processor.
Namespace: DigitalRune.Graphics.PostProcessingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntaxpublic bool Contains(
PostProcessor postProcessor
)
Public Function Contains (
postProcessor As PostProcessor
) As Boolean
public:
virtual bool Contains(
PostProcessor^ postProcessor
) sealed
abstract Contains :
postProcessor : PostProcessor -> bool
override Contains :
postProcessor : PostProcessor -> bool
Parameters
- postProcessor
- Type: DigitalRune.Graphics.PostProcessing.PostProcessor
The post-processor to locate in the post-processor chain.
Return Value
Type:
Booleantrue if
postProcessor is found in the
post-processor chain; otherwise,
false.
Implements
ICollection<T>.Contains(T)
See Also