The StringCollectionType resource contains one or more indexed String items.

Schema

  Copy Code
<?xml version="1.0"?><xs:schema xmlns:rm="http://schemas.microsoft.com/2006/11/ResourceManagement" targetNamespace="http://schemas.microsoft.com/2006/11/ResourceManagement" version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="StringCollectionType">
	<xs:sequence>
	<xs:element maxOccurs="unbounded" minOccurs="1" name="Item">
		<xs:simpleType>
		<xs:restriction base="xs:string">
			<xs:pattern value=".{0,448}" />
		</xs:restriction>
		</xs:simpleType>
	</xs:element>
	</xs:sequence>
  </xs:complexType>
</xs:schema>

Properties

The following table lists the properties of the StringCollectionType resource:

Property Description

Item

Required multi-valued property. Each Item represents an indexed String value. The String length must be no more than 448 characters.

Parent Resource

Remarks

The TextCollectionType resource contains String values with no length restriction.

See Also