OperationResult.Errors Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the errors associated with the request.

Namespace:   Microsoft.MasterDataServices.Services.DataContracts
Assembly:  Microsoft.MasterDataServices.Services.Contracts (in Microsoft.MasterDataServices.Services.Contracts.dll)

Syntax

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

Property Value

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

The errors associated with the request.

See Also

OperationResult Class
Microsoft.MasterDataServices.Services.DataContracts Namespace

Return to top