Example #1
0
 protected virtual void FillViewTypes(IMvxTypeCache <View> cache)
 {
     foreach (var assembly in AndroidViewAssemblies)
     {
         cache.AddAssembly(assembly);
     }
 }
Example #2
0
        protected virtual void FillViewTypes(IMvxTypeCache <View> cache)
        {
            if (cache == null)
            {
                throw new ArgumentNullException(nameof(cache));
            }

            foreach (var assembly in AndroidViewAssemblies)
            {
                cache.AddAssembly(assembly);
            }
        }
 protected MvxReflectionViewTypeResolver(IMvxTypeCache<View> typeCache)
 {
     this._typeCache = typeCache;
 }
Example #4
0
 protected override void FillViewTypes(IMvxTypeCache <View> cache)
 {
     base.FillViewTypes(cache);
     cache.AddAssembly(typeof(DeapExtensions.Binding.Droid.Views.BindableGroupListView).Assembly);
 }
 public MvxNamespaceListViewTypeResolver(IMvxTypeCache <View> typeCache)
     : base(typeCache)
 {
     Namespaces = new List <string>();
 }
Example #6
0
 public MvxAxmlNameViewTypeResolver(IMvxTypeCache <View> typeCache)
     : base(typeCache)
 {
     this.ViewNamespaceAbbreviations = new Dictionary <string, string>();
 }
 public MvxNamespaceListViewTypeResolver(IMvxTypeCache<View> typeCache)
     : base(typeCache)
 {
     this.Namespaces = new List<string>();
 }
 public MvxJustNameViewTypeResolver(IMvxTypeCache<View> typeCache) : base(typeCache)
 {
 }
Example #9
0
 protected MvxReflectionViewTypeResolver(IMvxTypeCache <View> typeCache)
 {
     _typeCache = typeCache;
 }
 public MvxAxmlNameViewTypeResolver(IMvxTypeCache<View> typeCache)
     : base(typeCache)
 {
     this.ViewNamespaceAbbreviations = new Dictionary<string, string>();
 }
 protected MvxLongLowerCaseViewTypeResolver(IMvxTypeCache<View> typeCache)
     : base(typeCache)
 {
 }
 protected void FillViewTypes(IMvxTypeCache<View> cache)
 {
     cache.AddAssembly(typeof(DeapExtensions.Binding.Droid.Views.BindableGroupListView).Assembly);
 }
 protected MvxLongLowerCaseViewTypeResolver(IMvxTypeCache <View> typeCache)
     : base(typeCache)
 {
 }
 public MvxJustNameViewTypeResolver(IMvxTypeCache <View> typeCache) : base(typeCache)
 {
 }
 protected virtual void FillViewTypes(IMvxTypeCache<View> cache)
 {
     foreach (var assembly in AndroidViewAssemblies)
     {
         cache.AddAssembly(assembly);                
     }
 }
Example #16
0
 protected void FillViewTypes(IMvxTypeCache <View> cache)
 {
     cache.AddAssembly(typeof(ListViews.BindableGroupListView).Assembly);
 }