|  | EffectParameterBindingTCloneCore Method | 
 
Namespace: DigitalRune.Graphics.EffectsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
 Syntax
Syntaxprotected override void CloneCore(
	EffectParameterBinding source
)
Protected Overrides Sub CloneCore ( 
	source As EffectParameterBinding
)
protected:
virtual void CloneCore(
	EffectParameterBinding^ source
) override
abstract CloneCore : 
        source : EffectParameterBinding -> unit 
override CloneCore : 
        source : EffectParameterBinding -> unit Parameters
- source
- Type: DigitalRune.Graphics.EffectsEffectParameterBinding
 The object to clone.
 Remarks
RemarksNotes to Inheritors: Every 
EffectParameterBinding derived 
            class must implement this method. A typical implementation is to call 
            
base.CloneCore(this) to copy all properties of the base class and then copy all 
            properties of the derived class.
            
  See Also
See Also