public MvxIndexerChainedSourceBinding(object source, PropertyInfo itemPropertyInfo, MvxIndexerPropertyToken indexerPropertyToken,
                                       IList <MvxPropertyToken> childTokens)
     : base(source, itemPropertyInfo, childTokens)
 {
     _indexerPropertyToken = indexerPropertyToken;
     UpdateChildBinding();
 }
示例#2
0
 public MvxIndexerLeafPropertyInfoSourceBinding(object source, MvxIndexerPropertyToken indexToken)
     : base(source, "Item")
 {
     _key = indexToken.Key;
 }
 public MvxIndexerLeafPropertyInfoSourceBinding(object source, PropertyInfo itemPropertyInfo, MvxIndexerPropertyToken indexToken)
     : base(source, itemPropertyInfo)
 {
     this._key = indexToken.Key;
 }