IDReferencePropertyAttribute 類別

定義

定義套用至包含標識元參考的屬性。 此類別無法獲得繼承。

public ref class IDReferencePropertyAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Property)]
public sealed class IDReferencePropertyAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Property)>]
type IDReferencePropertyAttribute = class
    inherit Attribute
Public NotInheritable Class IDReferencePropertyAttribute
Inherits Attribute
繼承
IDReferencePropertyAttribute
屬性

範例

以下程式碼範例示範如何將屬性 IDReferencePropertyAttribute 套用到一個屬性,該屬性會評估字串。 在此範例中,DataSourceID成員識別資料來源控制,並指定類型。DataSourceControl

// This class implements a custom data source control.
public class SomeDataBoundControl : DataBoundControl
{   
    [ IDReferencePropertyAttribute(typeof(DataSourceControl)) ]        
    new public string DataSourceID {
        get {
            return base.DataSourceID;
        }
        set {
            base.DataSourceID = value;
        }
    }
}
' This class implements a custom data source control.
Public Class SomeDataBoundControl
    Inherits DataBoundControl
    
    <IDReferencePropertyAttribute(GetType(DataSourceControl))>  _
    Public Shadows Property DataSourceID() As String 
        Get
            Return MyBase.DataSourceID
        End Get
        Set
            MyBase.DataSourceID = value
        End Set
    End Property
    
End Class

備註

這個 IDReferencePropertyAttribute 類別會套用到包含 ID 參考的屬性。 ContentPlaceHolderID 是包含 ID 參考的屬性範例。 當此屬性套用時,設計者可在設計時提供額外功能,例如列出 ID。

建構函式

名稱 Description
IDReferencePropertyAttribute()

初始化 IDReferencePropertyAttribute 類別的新執行個體。

IDReferencePropertyAttribute(Type)

使用指定型別初始化該類別的新實例 IDReferencePropertyAttribute

屬性

名稱 Description
ReferencedControlType

取得該屬性所適用屬性所允許 IDReferencePropertyAttribute 的控制類型。

TypeId

在衍生類別中實作時,取得這個 Attribute的唯一標識碼。

(繼承來源 Attribute)

方法

名稱 Description
Equals(Object)

傳回值,這個值表示這個實例是否等於指定的物件。

GetHashCode()

傳回這個實例的哈希碼。

GetType()

取得目前實例的 Type

(繼承來源 Object)
IsDefaultAttribute()

在衍生類別中覆寫時,指出這個實例的值是否為衍生類別的預設值。

(繼承來源 Attribute)
Match(Object)

在衍生類別中覆寫時,傳回值,指出這個實例是否等於指定的物件。

(繼承來源 Attribute)
MemberwiseClone()

建立目前 Object的淺層複本。

(繼承來源 Object)
ToString()

傳回表示目前 物件的字串。

(繼承來源 Object)

明確介面實作

名稱 Description
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

將一組名稱對應至一組對應的分派識別項 (Dispatch Identifier)。

(繼承來源 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

擷取 物件的型別資訊,可用來取得介面的類型資訊。

(繼承來源 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

擷取物件提供的類型資訊介面數目 (0 或 1)。

(繼承來源 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供物件所公開屬性和方法的存取權。

(繼承來源 Attribute)

適用於

另請參閱