fsreqFilters Class |
A set of filters specifying the data that should be processed by the command.
If more than one Filter element specify the same FilterType then an 'or' condition is applied.
An 'and' condition is applied to different FilterType fields.
Ex.
DrawingNumber100DrawingNumber101Sequence5
Processed as DrawingNumber IN (100, 101) AND Sequence=5.
Inheritance Hierarchy
Namespace: FabSuiteRequestApi
Assembly: FabSuiteRequestApi (in FabSuiteRequestApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute] [XmlTypeAttribute(Namespace = "http://www.fabsuite.com/xml/fabsuite-xml-request-v0108.xsd")] public class fsreqFilters
The fsreqFilters type exposes the following members.
Constructors
Name | Description | |
---|---|---|
fsreqFilters |
fsreqFilters class constructor
|
Properties
Name | Description | |
---|---|---|
Filter |
A list of filter objects
| |
Unused |
This element is not intended to actually be used. It's sole purpose is to work around a
problem with MS Visual Studio's xsd tool that generates c# classes from an xsd schema.
With this tool if an element consists solely of a single element that may occur 1-many times
then that parent element is ignored and the classes are generated with a multi-dimensional array
of the inner element.
In this case, where fsreqFilters is used it would appear in the classes instead as being
a multi-dimensional array of fsreqFilter. Adding a second element, titled Unused here, avoids
this issue.
|
See Also