Home
last modified time | relevance | path

Searched refs:TModel (Results 1 – 25 of 116) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DModelMethodContext.cs51 public virtual void UpdateModel<TModel>(TModel model) where TModel : class {
52 _page.UpdateModel<TModel>(model); in _page.UpdateModel()
59 …public virtual void UpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TModel :…
60 _page.UpdateModel<TModel>(model, valueProvider); in _page.UpdateModel()
67 public virtual bool TryUpdateModel<TModel>(TModel model) where TModel : class {
68 return _page.TryUpdateModel<TModel>(model);
76 …public virtual bool TryUpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TMode…
77 return _page.TryUpdateModel<TModel>(model, valueProvider);
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/
H A DController.cs425 protected internal bool TryUpdateModel<TModel>(TModel model) where TModel : class {
429 … protected internal bool TryUpdateModel<TModel>(TModel model, string prefix) where TModel : class {
433 …protected internal bool TryUpdateModel<TModel>(TModel model, string[] includeProperties) where TMo…
437 …rotected internal bool TryUpdateModel<TModel>(TModel model, string prefix, string[] includePropert…
445 …protected internal bool TryUpdateModel<TModel>(TModel model, IValueProvider valueProvider) where T…
501 protected internal void UpdateModel<TModel>(TModel model) where TModel : class {
505 … protected internal void UpdateModel<TModel>(TModel model, string prefix) where TModel : class {
509 …protected internal void UpdateModel<TModel>(TModel model, string[] includeProperties) where TModel
513 …protected internal void UpdateModel<TModel>(TModel model, string prefix, string[] includePropertie…
521 …protected internal void UpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TMod…
[all …]
H A DViewMasterPage`1.cs3 public class ViewMasterPage<TModel> : ViewMasterPage {
4 private AjaxHelper<TModel> _ajaxHelper;
5 private HtmlHelper<TModel> _htmlHelper;
6 private ViewDataDictionary<TModel> _viewData;
8 public new AjaxHelper<TModel> Ajax {
11 _ajaxHelper = new AjaxHelper<TModel>(ViewContext, ViewPage);
17 public new HtmlHelper<TModel> Html {
20 _htmlHelper = new HtmlHelper<TModel>(ViewContext, ViewPage);
26 public new TModel Model {
32 public new ViewDataDictionary<TModel> ViewData {
[all …]
H A DViewUserControl`1.cs4 public class ViewUserControl<TModel> : ViewUserControl {
5 private AjaxHelper<TModel> _ajaxHelper;
6 private HtmlHelper<TModel> _htmlHelper;
7 private ViewDataDictionary<TModel> _viewData;
9 public new AjaxHelper<TModel> Ajax {
12 _ajaxHelper = new AjaxHelper<TModel>(ViewContext, this);
18 public new HtmlHelper<TModel> Html {
21 _htmlHelper = new HtmlHelper<TModel>(ViewContext, this);
27 public new TModel Model {
34 public new ViewDataDictionary<TModel> ViewData {
[all …]
H A DViewPage`1.cs4 public class ViewPage<TModel> : ViewPage {
6 private ViewDataDictionary<TModel> _viewData;
8 public new AjaxHelper<TModel> Ajax {
13 public new HtmlHelper<TModel> Html {
18 public new TModel Model {
25 public new ViewDataDictionary<TModel> ViewData {
28 SetViewData(new ViewDataDictionary<TModel>());
40 Ajax = new AjaxHelper<TModel>(ViewContext, this); in InitHelpers()
41 Html = new HtmlHelper<TModel>(ViewContext, this); in InitHelpers()
45 _viewData = new ViewDataDictionary<TModel>(viewData); in SetViewData()
H A DWebViewPage`1.cs4 public abstract class WebViewPage<TModel> : WebViewPage {
5 private ViewDataDictionary<TModel> _viewData;
7 public new AjaxHelper<TModel> Ajax {
12 public new HtmlHelper<TModel> Html {
17 public new TModel Model {
24 public new ViewDataDictionary<TModel> ViewData {
27 SetViewData(new ViewDataDictionary<TModel>());
39 Ajax = new AjaxHelper<TModel>(ViewContext, this); in InitHelpers()
40 Html = new HtmlHelper<TModel>(ViewContext, this); in InitHelpers()
44 _viewData = new ViewDataDictionary<TModel>(viewData); in SetViewData()
H A DViewDataDictionary`1.cs4 public class ViewDataDictionary<TModel> : ViewDataDictionary {
6 base(default(TModel)) { in ViewDataDictionary()
9 public ViewDataDictionary(TModel model) : in ViewDataDictionary()
17 public new TModel Model {
19 return (TModel)base.Model;
30 …ult = base.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(null, typeof(TModel));
40 bool castWillSucceed = TypeHelpers.IsCompatibleObject<TModel>(value); in SetModel()
43 base.SetModel((TModel)value); in SetModel()
47 ? Error.ViewDataDictionary_WrongTModelType(value.GetType(), typeof(TModel)) in SetModel()
48 : Error.ViewDataDictionary_ModelCannotBeNull(typeof(TModel)); in SetModel()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/
H A DController.cs540 protected internal bool TryUpdateModel<TModel>(TModel model) where TModel : class
545 … protected internal bool TryUpdateModel<TModel>(TModel model, string prefix) where TModel : class
550 …protected internal bool TryUpdateModel<TModel>(TModel model, string[] includeProperties) where TMo…
555 …rotected internal bool TryUpdateModel<TModel>(TModel model, string prefix, string[] includePropert…
565 …protected internal bool TryUpdateModel<TModel>(TModel model, IValueProvider valueProvider) where T…
633 protected internal void UpdateModel<TModel>(TModel model) where TModel : class
638 … protected internal void UpdateModel<TModel>(TModel model, string prefix) where TModel : class
643 …protected internal void UpdateModel<TModel>(TModel model, string[] includeProperties) where TModel
648 …protected internal void UpdateModel<TModel>(TModel model, string prefix, string[] includePropertie…
658 …protected internal void UpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TMod…
[all …]
H A DViewMasterPage`1.cs5 public class ViewMasterPage<TModel> : ViewMasterPage
7 private AjaxHelper<TModel> _ajaxHelper;
8 private HtmlHelper<TModel> _htmlHelper;
9 private ViewDataDictionary<TModel> _viewData;
11 public new AjaxHelper<TModel> Ajax
17 _ajaxHelper = new AjaxHelper<TModel>(ViewContext, ViewPage);
23 public new HtmlHelper<TModel> Html
29 _htmlHelper = new HtmlHelper<TModel>(ViewContext, ViewPage);
35 public new TModel Model
40 public new ViewDataDictionary<TModel> ViewData
[all …]
H A DViewUserControl`1.cs7 public class ViewUserControl<TModel> : ViewUserControl
9 private AjaxHelper<TModel> _ajaxHelper;
10 private HtmlHelper<TModel> _htmlHelper;
11 private ViewDataDictionary<TModel> _viewData;
13 public new AjaxHelper<TModel> Ajax
19 _ajaxHelper = new AjaxHelper<TModel>(ViewContext, this);
25 public new HtmlHelper<TModel> Html
31 _htmlHelper = new HtmlHelper<TModel>(ViewContext, this);
37 public new TModel Model
43 public new ViewDataDictionary<TModel> ViewData
[all …]
H A DViewDataDictionary`1.cs5 public class ViewDataDictionary<TModel> : ViewDataDictionary
9 base(default(TModel)) in ViewDataDictionary()
13 public ViewDataDictionary(TModel model) in ViewDataDictionary()
25 public new TModel Model
27 get { return (TModel)base.Model; }
38 …ult = base.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(null, typeof(TModel));
47 bool castWillSucceed = TypeHelpers.IsCompatibleObject<TModel>(value); in SetModel()
51 base.SetModel((TModel)value); in SetModel()
56 … ? Error.ViewDataDictionary_WrongTModelType(value.GetType(), typeof(TModel)) in SetModel()
57 … : Error.ViewDataDictionary_ModelCannotBeNull(typeof(TModel)); in SetModel()
H A DViewPage`1.cs7 public class ViewPage<TModel> : ViewPage
9 private ViewDataDictionary<TModel> _viewData;
11 public new AjaxHelper<TModel> Ajax { get; set; }
13 public new HtmlHelper<TModel> Html { get; set; }
15 public new TModel Model
21 public new ViewDataDictionary<TModel> ViewData
27 SetViewData(new ViewDataDictionary<TModel>());
38 Ajax = new AjaxHelper<TModel>(ViewContext, this); in InitHelpers()
39 Html = new HtmlHelper<TModel>(ViewContext, this); in InitHelpers()
44 _viewData = new ViewDataDictionary<TModel>(viewData); in SetViewData()
H A DWebViewPage`1.cs7 public abstract class WebViewPage<TModel> : WebViewPage
9 private ViewDataDictionary<TModel> _viewData;
11 public new AjaxHelper<TModel> Ajax { get; set; }
13 public new HtmlHelper<TModel> Html { get; set; }
15 public new TModel Model
21 public new ViewDataDictionary<TModel> ViewData
27 SetViewData(new ViewDataDictionary<TModel>());
38 Ajax = new AjaxHelper<TModel>(ViewContext, this); in InitHelpers()
39 Html = new HtmlHelper<TModel>(ViewContext, this); in InitHelpers()
44 _viewData = new ViewDataDictionary<TModel>(viewData); in SetViewData()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/Html/
H A DInputExtensions.cs49 …public static MvcHtmlString CheckBoxFor<TModel>(this HtmlHelper<TModel> htmlHelper, Expression<Fun… in CheckBoxFor() argument
55 …public static MvcHtmlString CheckBoxFor<TModel>(this HtmlHelper<TModel> htmlHelper, Expression<Fun… in CheckBoxFor() argument
61 …public static MvcHtmlString CheckBoxFor<TModel>(this HtmlHelper<TModel> htmlHelper, Expression<Fun… in CheckBoxFor() argument
133 …public static MvcHtmlString HiddenFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in HiddenFor() argument
139 …public static MvcHtmlString HiddenFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in HiddenFor() argument
206 …blic static MvcHtmlString PasswordFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in PasswordFor() argument
212 …blic static MvcHtmlString PasswordFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in PasswordFor() argument
318 …c static MvcHtmlString RadioButtonFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in RadioButtonFor() argument
425 …ublic static MvcHtmlString TextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in TextBoxFor() argument
431 …ublic static MvcHtmlString TextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in TextBoxFor() argument
[all …]
H A DLabelExtensions.cs63 …public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func… in LabelFor() argument
65 return LabelFor<TModel, TValue>(html, expression, labelText: null); in LabelFor()
69 …public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func… in LabelFor() argument
75 …public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func… in LabelFor() argument
81 …public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func… in LabelFor() argument
87 …public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func… in LabelFor() argument
93 …public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func… in LabelFor() argument
98 …internal static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in LabelFor() argument
107 …internal static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in LabelFor() argument
H A DDisplayNameExtensions.cs24 …static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<IEnumerable<TModel>> html, Exp… in DisplayNameFor() argument
30 …vcHtmlString DisplayNameForInternal<TModel, TValue>(this HtmlHelper<IEnumerable<TModel>> html, Exp… in DisplayNameForInternal() argument
32 …er(ModelMetadata.FromLambdaExpression(expression, new ViewDataDictionary<TModel>(), metadataProvid… in DisplayNameForInternal()
37 …ublic static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression… in DisplayNameFor() argument
42 …atic MvcHtmlString DisplayNameForInternal<TModel, TValue>(this HtmlHelper<TModel> html, Expression… in DisplayNameForInternal() argument
H A DEditorExtensions.cs42 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
48 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
54 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
60 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
66 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
72 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
H A DDisplayExtensions.cs42 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
48 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
54 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
60 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
66 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
72 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
H A DSelectExtensions.cs59 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
65 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
71 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
77 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
83 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
90 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
130 …ublic static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in ListBoxFor() argument
136 …ublic static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in ListBoxFor() argument
143 …ublic static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in ListBoxFor() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/Html/
H A DInputExtensions.cs40 …public static MvcHtmlString CheckBoxFor<TModel>(this HtmlHelper<TModel> htmlHelper, Expression<Fun… in CheckBoxFor() argument
45 …public static MvcHtmlString CheckBoxFor<TModel>(this HtmlHelper<TModel> htmlHelper, Expression<Fun… in CheckBoxFor() argument
50 …public static MvcHtmlString CheckBoxFor<TModel>(this HtmlHelper<TModel> htmlHelper, Expression<Fun… in CheckBoxFor() argument
102 …public static MvcHtmlString HiddenFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in HiddenFor() argument
107 …public static MvcHtmlString HiddenFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in HiddenFor() argument
112 …public static MvcHtmlString HiddenFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in HiddenFor() argument
155 …blic static MvcHtmlString PasswordFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in PasswordFor() argument
160 …blic static MvcHtmlString PasswordFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in PasswordFor() argument
224 …c static MvcHtmlString RadioButtonFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in RadioButtonFor() argument
285 …ublic static MvcHtmlString TextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in TextBoxFor() argument
[all …]
H A DDisplayExtensions.cs32 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
37 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
42 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
47 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
52 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
57 …public static MvcHtmlString DisplayFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fu… in DisplayFor() argument
H A DEditorExtensions.cs33 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
38 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
43 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
48 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
53 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
58 …public static MvcHtmlString EditorFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Fun… in EditorFor() argument
H A DSelectExtensions.cs49 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
54 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
59 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
64 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
69 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
75 … static MvcHtmlString DropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in DropDownListFor() argument
106 …ublic static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in ListBoxFor() argument
111 …ublic static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in ListBoxFor() argument
117 …ublic static MvcHtmlString ListBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expre… in ListBoxFor() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/
H A DUserControl.cs404 public virtual void UpdateModel<TModel>(TModel model) where TModel : class {
405 Page.UpdateModel<TModel>(model); in Page.UpdateModel()
412 …public virtual void UpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TModel :…
413 Page.UpdateModel<TModel>(model, valueProvider); in Page.UpdateModel()
420 public virtual bool TryUpdateModel<TModel>(TModel model) where TModel : class {
421 return Page.TryUpdateModel<TModel>(model);
429 …public virtual bool TryUpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TMode…
430 return Page.TryUpdateModel<TModel>(model, valueProvider);
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/apps/bs_tools/
H A Dcasbar_score.h54 class Score<TValue, BsTagList<TBsProfileScore, TModel, TCellDescriptor1> >
89 (*this).readBaseFreqs = ReadBaseFreqs<TValue, TModel>::getData();
90 (*this).refBaseFreqs = RefBaseFreqs<TValue, TModel>::getData();
462 Score<TValue, BsTagList<TBsProfileScore, TModel, FirstCell> > const &me,
472 Score<TValue, BsTagList<TBsProfileScore, TModel, LastCell> > const &me,
480 template <typename TValue, typename TModel, typename TSeq1, typename TSeq2>
483 Score<TValue, BsTagList<BsProfileScoreCT, TModel, InnerCell> > const &me,
496 template <typename TValue, typename TModel, typename TSeq1, typename TSeq2>
513 template <typename TValue, typename TModel, typename TSeq1, typename TSeq2>
516 Score<TValue, BsTagList<BsProfileScoreGA, TModel, InnerCell> > const &me,
[all …]

12345