OperationResult.Errors Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array that contains any and all errors that occurred during the operation request.

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

Syntax

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

Property Value

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

A collection of type Error.

See Also

OperationResult Class
Microsoft.MasterDataServices Namespace

Return to top