' Options: 'Date: 2024-05-15 08:49:44 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://test.servicestack.net ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: HelloAllTypes.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.IO Imports Test.ServiceModel Imports Test.ServiceModel.Types Namespace Global Namespace Test.ServiceModel Public Partial Class HelloAllTypes Implements IReturn(Of HelloAllTypesResponse) Public Overridable Property Name As String Public Overridable Property AllTypes As AllTypes Public Overridable Property AllCollectionTypes As AllCollectionTypes End Class Public Partial Class HelloAllTypesResponse Public Overridable Property Result As String Public Overridable Property AllTypes As AllTypes Public Overridable Property AllCollectionTypes As AllCollectionTypes End Class End Namespace Namespace Test.ServiceModel.Types Public Partial Class AllCollectionTypes Implements IReturn(Of AllCollectionTypes) Public Sub New() IntArray = New Integer(){} IntList = New List(Of Integer) StringArray = New String(){} StringList = New List(Of String) FloatArray = New Single(){} DoubleList = New List(Of Double) ByteArray = New Byte(){} CharArray = New Char(){} DecimalList = New List(Of Decimal) PocoArray = New Poco(){} PocoList = New List(Of Poco) PocoLookup = New Dictionary(Of String, List(Of Poco)) PocoLookupMap = New Dictionary(Of String, List(Of Dictionary(Of String,Poco))) End Sub Public Overridable Property IntArray As Integer() Public Overridable Property IntList As List(Of Integer) Public Overridable Property StringArray As String() Public Overridable Property StringList As List(Of String) Public Overridable Property FloatArray As Single() Public Overridable Property DoubleList As List(Of Double) Public Overridable Property ByteArray As Byte() Public Overridable Property CharArray As Char() Public Overridable Property DecimalList As List(Of Decimal) Public Overridable Property PocoArray As Poco() Public Overridable Property PocoList As List(Of Poco) Public Overridable Property PocoLookup As Dictionary(Of String, List(Of Poco)) Public Overridable Property PocoLookupMap As Dictionary(Of String, List(Of Dictionary(Of String,Poco))) End Class Public Partial Class AllTypes Implements IReturn(Of AllTypes) Public Sub New() StringList = New List(Of String) StringArray = New String(){} StringMap = New Dictionary(Of String, String) IntStringMap = New Dictionary(Of Integer, String) End Sub Public Overridable Property Id As Integer Public Overridable Property NullableId As Nullable(Of Integer) Public Overridable Property [Byte] As Byte Public Overridable Property [Short] As Short Public Overridable Property Int As Integer Public Overridable Property [Long] As Long Public Overridable Property [UShort] As UInt16 Public Overridable Property UInt As UInt32 Public Overridable Property [ULong] As UInt64 Public Overridable Property Float As Single Public Overridable Property [Double] As Double Public Overridable Property [Decimal] As Decimal Public Overridable Property [String] As String Public Overridable Property DateTime As Date Public Overridable Property TimeSpan As TimeSpan Public Overridable Property DateTimeOffset As DateTimeOffset Public Overridable Property Guid As Guid Public Overridable Property [Char] As Char Public Overridable Property KeyValuePair As KeyValuePair(Of String, String) Public Overridable Property NullableDateTime As Nullable(Of Date) Public Overridable Property NullableTimeSpan As Nullable(Of TimeSpan) Public Overridable Property StringList As List(Of String) Public Overridable Property StringArray As String() Public Overridable Property StringMap As Dictionary(Of String, String) Public Overridable Property IntStringMap As Dictionary(Of Integer, String) Public Overridable Property SubType As SubType End Class End Namespace End Namespace