|  | AlphaTestEffectBindingCreateInstanceCore Method | 
            When implemented in a derived class, creates a new instance of the 
            
EffectBinding derived class. 
            
 
Namespace: DigitalRune.Graphics.EffectsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
 Syntax
Syntaxprotected override EffectBinding CreateInstanceCore()
Protected Overrides Function CreateInstanceCore As EffectBinding
protected:
virtual EffectBinding^ CreateInstanceCore() override
abstract CreateInstanceCore : unit -> EffectBinding 
override CreateInstanceCore : unit -> EffectBinding 
Return Value
Type: 
EffectBindingThe new instance.
 Remarks
Remarks
            Do not call this method directly (except when calling base in an implementation). This 
            method is called internally by the Clone method whenever a new instance of
            the EffectBinding is created. 
            
Notes to Inheritors: Every EffectBinding derived class must
            implement this method. A typical implementation is to simply call the default constructor
            and return the result. 
            
 See Also
See Also