BRItem.PostfixArguments Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array of postfix (right-hand-side) arguments.

Namespace:   Microsoft.MasterDataServices
Assembly:  Microsoft.MasterDataServices (in Microsoft.MasterDataServices.dll)

Syntax

[DataMemberAttribute(EmitDefaultValue = false)]
public Collection<object> PostfixArguments { get; set; }
public:
[DataMemberAttribute(EmitDefaultValue = false)]
property Collection<Object^>^ PostfixArguments {
    Collection<Object^>^ get();
    void set(Collection<Object^>^ value);
}
[<DataMemberAttribute(EmitDefaultValue = false)>]
member PostfixArguments : Collection<Object> with get, set
<DataMemberAttribute(EmitDefaultValue := False)>
Public Property PostfixArguments As Collection(Of Object)

Property Value

Type: System.Collections.ObjectModel.Collection<Object>

A collection of objects representing the arguments.

See Also

BRItem Class
Microsoft.MasterDataServices Namespace

Return to top