EnvironmentInfo.Name Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the name of the environment.

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

Syntax

[DisplayCategoryKeyAttribute("General")]
[PropertyOrderAttribute(0)]
[SfcKeyAttribute(0)]
[SfcPropertyAttribute(SfcPropertyFlags.None | SfcPropertyFlags.Required | SfcPropertyFlags.ReadOnlyAfterCreation)]
[DisplayNameKeyAttribute("Name")]
[DisplayDescriptionKeyAttribute("Environment_NameDesc")]
[ReadOnlyAttribute(true)]
public string Name { get; private set; }
public:
[DisplayCategoryKeyAttribute("General")]
[PropertyOrderAttribute(0)]
[SfcKeyAttribute(0)]
[SfcPropertyAttribute(SfcPropertyFlags::None | SfcPropertyFlags::Required | SfcPropertyFlags::ReadOnlyAfterCreation)]
[DisplayNameKeyAttribute("Name")]
[DisplayDescriptionKeyAttribute("Environment_NameDesc")]
[ReadOnlyAttribute(true)]
property String^ Name {
    String^ get();
    private: void set(String^ value);
}
[<DisplayCategoryKeyAttribute("General")>]
[<PropertyOrderAttribute(0)>]
[<SfcKeyAttribute(0)>]
[<SfcPropertyAttribute(SfcPropertyFlags.None | SfcPropertyFlags.Required | SfcPropertyFlags.ReadOnlyAfterCreation)>]
[<DisplayNameKeyAttribute("Name")>]
[<DisplayDescriptionKeyAttribute("Environment_NameDesc")>]
[<ReadOnlyAttribute(true)>]
member Name : string with get, private set
<DisplayCategoryKeyAttribute("General")>
<PropertyOrderAttribute(0)>
<SfcKeyAttribute(0)>
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Required Or SfcPropertyFlags.ReadOnlyAfterCreation)>
<DisplayNameKeyAttribute("Name")>
<DisplayDescriptionKeyAttribute("Environment_NameDesc")>
<ReadOnlyAttribute(True)>
Public Property Name As String
    Get
    Private Set
End Property

Property Value

Type: System.String

The name of the environment.

See Also

EnvironmentInfo Class
Microsoft.SqlServer.Management.IntegrationServices Namespace

Return to top