Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/Arrays.xsd @ 1481

Last change on this file since 1481 was 1481, checked in by kgrading, 15 years ago

bugfix of shutdown (#473)

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3  <xs:complexType name="ArrayOfKeyValueOflongdouble">
4    <xs:annotation>
5      <xs:appinfo>
6        <IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary>
7      </xs:appinfo>
8    </xs:annotation>
9    <xs:sequence>
10      <xs:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOflongdouble">
11        <xs:complexType>
12          <xs:sequence>
13            <xs:element name="Key" type="xs:long" />
14            <xs:element name="Value" type="xs:double" />
15          </xs:sequence>
16        </xs:complexType>
17      </xs:element>
18    </xs:sequence>
19  </xs:complexType>
20  <xs:element name="ArrayOfKeyValueOflongdouble" nillable="true" type="tns:ArrayOfKeyValueOflongdouble" />
21  <xs:complexType name="ArrayOfstring">
22    <xs:sequence>
23      <xs:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="xs:string" />
24    </xs:sequence>
25  </xs:complexType>
26  <xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring" />
27  <xs:complexType name="ArrayOfbase64Binary">
28    <xs:sequence>
29      <xs:element minOccurs="0" maxOccurs="unbounded" name="base64Binary" nillable="true" type="xs:base64Binary" />
30    </xs:sequence>
31  </xs:complexType>
32  <xs:element name="ArrayOfbase64Binary" nillable="true" type="tns:ArrayOfbase64Binary" />
33</xs:schema>
Note: See TracBrowser for help on using the repository browser.