Click or drag to resize
DigitalRuneEffectBindingSetT Method (String, FuncDelegateParameterBindingT, RenderContext, T)

Namespace: DigitalRune.Graphics.Effects
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public DelegateParameterBinding<T> Set<T>(
	string name,
	Func<DelegateParameterBinding<T>, RenderContext, T> computeParameter
)

Parameters

name
Type: SystemString
The name of the effect parameter to which the binding is applied.
computeParameter
Type: SystemFuncDelegateParameterBindingT, RenderContext, T
The callback function that computes the value.

Type Parameters

T
The value type. See EffectParameterBindingT.

Return Value

Type: DelegateParameterBindingT
The DelegateParameterBindingT that has been set.
Exceptions
ExceptionCondition
ArgumentNullExceptionname is .
ArgumentExceptionname is empty.
KeyNotFoundExceptionEffect does not contain an EffectParameter with the given name.
EffectBindingException The value type T is not supported.
Remarks
If an appropriate effect parameter binding for the effect parameter already exists, then the existing binding is updated.
See Also