Click here to Skip to main content
15,886,799 members
Articles / Programming Languages / XML

AppFabric Caching Extension

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
2 Jan 2012CPOL4 min read 41.9K   1.2K   17  
A component which can be plugged to a WCF service or any other client to utilize AppFabric caching features
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/WCFService" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/WCFService" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="ArrayOfCustomerDC">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="CustomerDC" nillable="true" type="tns:CustomerDC" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="ArrayOfCustomerDC" nillable="true" type="tns:ArrayOfCustomerDC" />
  <xs:complexType name="CustomerDC">
    <xs:sequence>
      <xs:element minOccurs="0" name="CompanyName" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="CustomerID" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="FirstName" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="LastName" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="CustomerDC" nillable="true" type="tns:CustomerDC" />
</xs:schema>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions