StagingBatch.Errors Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array of error messages.

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

Syntax

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

Property Value

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

A collection of type StagingBatchError.

See Also

StagingBatch Class
Microsoft.MasterDataServices Namespace

Return to top