Namespace: Microsoft.ConfigurationManagement.ApplicationManagement
Assembly: Microsoft.ConfigurationManagement.ApplicationManagement (in Microsoft.ConfigurationManagement.ApplicationManagement.dll)

Usage

Visual Basic
Dim instance As Application
Dim value As IList(Of Feature)

value = instance.Features

instance.Features = value

Syntax

Visual Basic
<SuppressMessageAttribute("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")> _
<XmlArrayItemAttribute("Feature")> _
Public Property Features As IList(Of Feature)
C#
[SuppressMessageAttribute("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] 
[XmlArrayItemAttribute("Feature")] 
public IList<Feature> Features { get; set; }
C++
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA2227:CollectionPropertiesShouldBeReadOnly")] 
[XmlArrayItemAttribute(L"Feature")] 
public:
property IList<Feature^>^ Features {
		IList<Feature^>^ get ();
		void set (IList<Feature^>^ value);
}
J#
/** @property */
public IList<Feature> get_Features ()

/** @property */
public void set_Features (IList<Feature> value)
JScript
public function get Features () : IList<Feature>

public function set Features (value : IList<Feature>)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows Server 2003, and

Target Platforms

See Also