Exemple #1
0
            public CandidateProperty?RelativeTo(PropertyPath basePath)
            {
                var newPath = RelativePath.RelativeTo(basePath);

                return(newPath != null ? (CandidateProperty?)new CandidateProperty(Object, Property, newPath) : null);
            }
Exemple #2
0
 CandidateProperty(object obj, IProperty property, PropertyPath path)
 {
     Object       = obj;
     Property     = property;
     RelativePath = path;
 }