Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Test.ServiceModel
Namespace Global
Namespace ServiceStack
<DataContract>
Public Partial Class EmptyResponse
<DataMember(Order:=1)>
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
Namespace Test.ServiceModel
Public Partial Class DeclarativeSingleValidation
Public Overridable Property Name As String
<Validate(Validator:="MaximumLength(20)")>
Public Overridable Property Value As String
End Class
Public Partial Class DeclarativeSingleValidationTest
<Validate(Validator:="NotEmpty")>
<Validate(Validator:="MaximumLength(20)")>
Public Overridable Property Site As String
Public Overridable Property DeclarativeSingleValidation As DeclarativeSingleValidation
Public Overridable Property FluentSingleValidation As FluentSingleValidation
End Class
Public Partial Class FluentSingleValidation
Public Overridable Property Name As String
Public Overridable Property Value As String
End Class
End Namespace
End Namespace
VB.NET DeclarativeSingleValidationTest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /csv/reply/DeclarativeSingleValidationTest HTTP/1.1
Host: test.servicestack.net
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"site":"String","declarativeSingleValidation":{"name":"String","value":"String"},"fluentSingleValidation":{"name":"String","value":"String"}}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}