Ejemplo n.º 1
0
 protected DependencyPropertyImplementation(ClrPropertyImplementationBase clrImplementation)
 {
     if (clrImplementation == null)
     {
         throw new ArgumentNullException("clrImplementation");
     }
     this.clrImplementation = clrImplementation;
 }
Ejemplo n.º 2
0
 internal ClrPropertyReferenceStep(IType declaringType, string memberName, IType valueType, ClrPropertyImplementationBase implementation, int sortIndex) : base(declaringType, memberName, valueType, sortIndex)
 {
     this.implementation = implementation;
 }
Ejemplo n.º 3
0
 void Microsoft.Expression.DesignModel.Metadata.IPropertyImplementation.Invalidate()
 {
     this.implementation = ((PlatformTypes)base.DeclaringType.PlatformMetadata).UndefinedClrPropertyImplementationInstance;
 }
 private IndexedClrPropertyReferenceStep(IType declaringType, string memberName, IType valueType, ClrPropertyImplementationBase implementation, int index) : base(declaringType, memberName, valueType, implementation, index)
 {
     this.index = index;
 }