IDReferencePropertyAttribute Constructor ()

 

Initializes a new instance of the IDReferencePropertyAttribute class.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

Public Sub New

When you call this constructor, the ReferencedControlType property is set to Control, which is its default value.

The following code example demonstrates how the IDReferencePropertyAttribute attribute is applied to a property that evaluates to a string. In this example, the DataSourceID member identifies a data source control at run time. By using the default constructor, the ReferencedControlType property is set to the default value, Control.

' This class implements a custom data source control.
Public Class SomeDataBoundControl
    Inherits DataBoundControl

    <IDReferencePropertyAttribute()>  _
    Public Shadows Property DataSourceID() As String 
        Get
            Return MyBase.DataSourceID
        End Get
        Set
            MyBase.DataSourceID = value
        End Set
    End Property

End Class 'SomeDataBoundControl 

.NET Framework
Available since 2.0
Return to top
Show: