Inheritance: MvxPropertyToken
 public MvxIndexerChainedSourceBinding(object source, PropertyInfo itemPropertyInfo, MvxIndexerPropertyToken indexerPropertyToken,
                                           IList<MvxPropertyToken> childTokens)
     : base(source, itemPropertyInfo, childTokens)
 {
     this._indexerPropertyToken = indexerPropertyToken;
     this.UpdateChildBinding();
 }
 public MvxIndexerLeafPropertyInfoSourceBinding(object source, PropertyInfo itemPropertyInfo, MvxIndexerPropertyToken indexToken)
     : base(source, itemPropertyInfo)
 {
     this._key = indexToken.Key;
 }