Test

<back to all web services

AltQueryItems

Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Test.ServiceModel

Namespace Global

    Namespace Test.ServiceModel

        Public Partial Class AltQueryItems
            Public Overridable Property Name As String
        End Class

        Public Partial Class Item
            Public Overridable Property Name As String
            Public Overridable Property Description As String
        End Class

        Public Partial Class QueryResponseAlt(Of Item)
            Implements IMeta
            Public Sub New()
                Results = New List(Of Item)
                Meta = New Dictionary(Of String, String)
            End Sub

            Public Overridable Property Offset As Integer
            Public Overridable Property Total As Integer
            Public Overridable Property Results As List(Of Item)
            Public Overridable Property Meta As Dictionary(Of String, String)
            Public Overridable Property ResponseStatus As ResponseStatus
        End Class
    End Namespace
End Namespace

VB.NET AltQueryItems DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /csv/reply/AltQueryItems HTTP/1.1 
Host: test.servicestack.net 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"name":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"offset":0,"total":0,"results":[{"name":"String","description":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}