Files
linux-packaging-mono/mcs/class/System.Web/Test/mainsoft/NunitWebResources/ReadOnlyPropertyControl.ascx

11 lines
272 B
Plaintext
Raw Normal View History

<%@ Control Language="C#" %>
<script runat="server">
[System.ComponentModel.Bindable (true)]
public readonly bool ReadOnlyField = true;
[System.ComponentModel.Bindable (true)]
public bool ReadOnlyProperty
{
get { return true; }
}
</script>