e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
38 lines
1000 B
C#
38 lines
1000 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="TemplatePropertyEntry.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI {
|
|
/// <devdoc>
|
|
/// PropertyEntry for ITemplate properties
|
|
/// </devdoc>
|
|
public class TemplatePropertyEntry : BuilderPropertyEntry {
|
|
private bool _bindableTemplate;
|
|
|
|
internal TemplatePropertyEntry() {
|
|
}
|
|
|
|
internal TemplatePropertyEntry(bool bindableTemplate) {
|
|
_bindableTemplate = bindableTemplate;
|
|
}
|
|
|
|
internal bool IsMultiple {
|
|
get {
|
|
return Util.IsMultiInstanceTemplateProperty(PropertyInfo);
|
|
}
|
|
}
|
|
|
|
public bool BindableTemplate {
|
|
get {
|
|
return _bindableTemplate;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|