DSDataTypes ClassDSWS API (.NET)

[This is preliminary documentation and is subject to change.]

Defines the datatype collection
Inheritance Hierarchy

System Object
  Datastream.DswsApi DSDataTypes

Namespace: Datastream.DswsApi
Assembly: Datastream.DswsApi.NET4.0 (in Datastream.DswsApi.NET4.0.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public sealed class DSDataTypes : IEnumerable<DSDataType>, 
	IEnumerable
Remarks

The data types used in a DSDataRequest specifies the fields for which data must be retrieved. You can specify one or multiple data types as part of the request.
Examples

Following example illustrates way in which you can create datatypes
var datatypes1 = new DSDataTypes("PH");

var datatypes2 = new DSDataTypes("PH", "PL", "MV", "P");

var datatypes3 = new DSDataTypes(DSDataTypeCodes.Equity.Pricing.PH);
Version Information

.NET API Framework

Supported in: 4.1, 3.6
See Also