DtsConnectionAttribute.ConnectionContact Property
Gets or sets a String that contains the contact information for the connection manager.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Property ConnectionContact As String
Get
Set
'Usage
Dim instance As DtsConnectionAttribute
Dim value As String
value = instance.ConnectionContact
instance.ConnectionContact = value
public string ConnectionContact { get; set; }
public:
property String^ ConnectionContact {
String^ get ();
void set (String^ value);
}
member ConnectionContact : string with get, set
function get ConnectionContact () : String
function set ConnectionContact (value : String)
Property Value
Type: System.String
A String that contains the contact information for the connection manager.
Examples
The following example shows a class that implements this attribute.
[DtsConnection(DisplayName = "MyConnectionManager",
Description = "Custom Connection Manager for Testing",
IconResource = "MyConnectionManager.MyConnectionMgrIcon.ico",
UITypeName = "MyNamespace.MyConnectionManagerClassName," +
"MyAssemblyName,Version=1.00.000.00,Culture=neutral,PublicKeyToken=")]
public class MyConnnectionMgr : ConnectionManagerBase
{
}
<DtsConnection(DisplayName:="MyConnectionManager", _
Description:="Custom Connection Manager for Testing", _
IconResource:="MyConnectionManager.MyConnectionMgrIcon.ico", _
UITypeName:="MyNamespace.MyConnectionManagerClassName,MyAssemblyName," & _
"Version=1.00.000.00,Culture=neutral,PublicKeyToken=")> _
Public Class MyConnnectionMgr
Inherits ConnectionManagerBase
End Class