EnvironmentInfo.Description Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the description of the environment.

Namespace:   Microsoft.SqlServer.Management.IntegrationServices
Assembly:  Microsoft.SqlServer.Management.IntegrationServices (in Microsoft.SqlServer.Management.IntegrationServices.dll)

Syntax

[DisplayNameKeyAttribute("Description")]
[DisplayCategoryKeyAttribute("General")]
[DisplayDescriptionKeyAttribute("Environment_DescriptionDesc")]
[EditorAttribute("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", 
    typeof(UITypeEditor))]
[PropertyOrderAttribute(2)]
[SfcPropertyAttribute(Data = true)]
public string Description { get; set; }
public:
[DisplayNameKeyAttribute("Description")]
[DisplayCategoryKeyAttribute("General")]
[DisplayDescriptionKeyAttribute("Environment_DescriptionDesc")]
[EditorAttribute("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", 
    (UITypeEditor^::typeid))]
[PropertyOrderAttribute(2)]
[SfcPropertyAttribute(Data = true)]
property String^ Description {
    String^ get();
    void set(String^ value);
}
[<DisplayNameKeyAttribute("Description")>]
[<DisplayCategoryKeyAttribute("General")>]
[<DisplayDescriptionKeyAttribute("Environment_DescriptionDesc")>]
[<EditorAttribute("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
    typeof(UITypeEditor))>]
[<PropertyOrderAttribute(2)>]
[<SfcPropertyAttribute(Data = true)>]
member Description : string with get, set
<DisplayNameKeyAttribute("Description")>
<DisplayCategoryKeyAttribute("General")>
<DisplayDescriptionKeyAttribute("Environment_DescriptionDesc")>
<EditorAttribute("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
    GetType(UITypeEditor))>
<PropertyOrderAttribute(2)>
<SfcPropertyAttribute(Data := True)>
Public Property Description As String

Property Value

Type: System.String

The description of the environment.

See Also

EnvironmentInfo Class
Microsoft.SqlServer.Management.IntegrationServices Namespace

Return to top