CustomComponentViewHandlerAttribute 클래스
Notifies the data flow designer at design time that the user interface of the component will manage the component viewer by itself.
상속 계층
System.Object
System.Attribute
Microsoft.SqlServer.Dts.Pipeline.Design.CustomComponentViewHandlerAttribute
네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Design
어셈블리: Microsoft.SqlServer.Dts.Design(Microsoft.SqlServer.Dts.Design.dll)
구문
‘선언
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple := False)> _
Public NotInheritable Class CustomComponentViewHandlerAttribute _
Inherits Attribute
‘사용 방법
Dim instance As CustomComponentViewHandlerAttribute
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false)]
public sealed class CustomComponentViewHandlerAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple = false)]
public ref class CustomComponentViewHandlerAttribute sealed : public Attribute
[<SealedAttribute>]
[<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false)>]
type CustomComponentViewHandlerAttribute =
class
inherit Attribute
end
public final class CustomComponentViewHandlerAttribute extends Attribute
CustomComponentViewHandlerAttribute 유형에서 다음 멤버를 표시합니다.
생성자
이름 | 설명 | |
---|---|---|
CustomComponentViewHandlerAttribute | Initializes a new instance of a CustomComponentViewHandlerAttribute. |
맨 위로 이동
속성
이름 | 설명 | |
---|---|---|
TypeId | (Attribute에서 상속됨) |
맨 위로 이동
메서드
이름 | 설명 | |
---|---|---|
Equals | (Attribute에서 상속됨) | |
GetHashCode | (Attribute에서 상속됨) | |
GetType | (Object에서 상속됨) | |
IsDefaultAttribute | (Attribute에서 상속됨) | |
Match | (Attribute에서 상속됨) | |
ToString | (Object에서 상속됨) |
맨 위로 이동
명시적 인터페이스 구현
이름 | 설명 | |
---|---|---|
_Attribute.GetIDsOfNames | (Attribute에서 상속됨) | |
_Attribute.GetTypeInfo | (Attribute에서 상속됨) | |
_Attribute.GetTypeInfoCount | (Attribute에서 상속됨) | |
_Attribute.Invoke | (Attribute에서 상속됨) |
맨 위로 이동
주의
This attribute is typically used by components where design-time modifications have side effects outside the component itself and where the component manages other components in the data flow. For example, the Slowly Changing Dimension Transformation creates an entire sequence of data flow components and may also delete other objects.
예
The following sample shows the CustomComponentViewHandlerAttribute attribute applied to a class.
[CustomComponentViewHandler]
public class MyComponentUI
{
...
]
<CustomComponentViewHandler> _
Public Class MyComponentUI
...
End Class
스레드 보안
이 유형의 모든 공용 static(Visual Basic에서는 Shared) 멤버는 스레드로부터 안전합니다. 인스턴스 멤버는 스레드로부터의 안전성이 보장되지 않습니다.