BRActionGroup.BRActionComponents Property
Gets the collection of action components.
Namespace: Microsoft.MasterDataServices.Services.DataContracts
Assembly: Microsoft.MasterDataServices.Services (in Microsoft.MasterDataServices.Services.dll)
Syntax
'Declaration
<DataMemberAttribute(EmitDefaultValue := False)> _
Public Property BRActionComponents As Collection(Of BRActionComponent)
Get
Private Set
'Usage
Dim instance As BRActionGroup
Dim value As Collection(Of BRActionComponent)
value = instance.BRActionComponents
[DataMemberAttribute(EmitDefaultValue = false)]
public Collection<BRActionComponent> BRActionComponents { get; private set; }
[DataMemberAttribute(EmitDefaultValue = false)]
public:
property Collection<BRActionComponent^>^ BRActionComponents {
Collection<BRActionComponent^>^ get ();
private: void set (Collection<BRActionComponent^>^ value);
}
[<DataMemberAttribute(EmitDefaultValue = false)>]
member BRActionComponents : Collection<BRActionComponent> with get, private set
function get BRActionComponents () : Collection<BRActionComponent>
private function set BRActionComponents (value : Collection<BRActionComponent>)
Property Value
Type: System.Collections.ObjectModel.Collection<BRActionComponent>
A collection of type BRActionComponent.
See Also