XdsObjects Help file
XdsObjects Namespace / XdsBaseServer Class / StructureIncomingSubmissionSet Property



StructureIncomingSubmissionSet Property (XdsBaseServer)
Controls the behaviour used when incoming data is received.
Syntax
Public Property StructureIncomingSubmissionSet As Boolean
Dim instance As XdsBaseServer
Dim value As Boolean
 
instance.StructureIncomingSubmissionSet = value
 
value = instance.StructureIncomingSubmissionSet
public bool StructureIncomingSubmissionSet {get; set;}
public:
property bool StructureIncomingSubmissionSet {
   bool get();
   void set (    bool value);
}
Remarks

XdsObjects can operate in 2 distinct modes - depending on the value of this property

If it is true (the default):

A folder structure is created as aprt of the receipt of data, with documents being placed in folders according the associations which link them, and the XdsSubmissionSet's Structured property is set to true

If false:

All documents will appear in the top level Document folder and the XdsSubmissionSet's Structured property is set to false. In this case, the associations may be found, unaltered, in the XdsSubmissionSet's Associations collection.

There are 2 versions of this property - one attached to XdsBaseServer which controls the behaviour when receiving data vai ProvideAndRegisterDocumentSet or RegisterDocumentSet transactions, and the other on XdsDomain which is used for data received via query and retrieve operations.

In general, this value should be true for consumers, but false for registries, servers and gateways.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also