Click or drag to resize

DocumentsOnDemand Class

Class for making calls to the DFSnapshotOnDemand service
Inheritance Hierarchy
SystemObject
  Kratos_3.RunTimePlatformDocumentsOnDemand

Namespace:  Kratos_3.RunTimePlatform
Assembly:  Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntax
public class DocumentsOnDemand

The DocumentsOnDemand type exposes the following members.

Constructors
Methods
  NameDescription
Public methodDocumentsCategories
DocumentsCategories
Public methodDocumentsCategories(Object)
DocumentsCategories
Public methodDocumentsCount
DocumentsCount
Public methodDocumentsCount(Object)
DocumentsCount
Public methodDocumentsSearch
DocumentsSearch
Public methodDocumentsSearch(Object)
DocumentsSearch
Public methodDocumentsSources
DocumentsSources
Public methodDocumentsSources(Object)
DocumentsCategories
Public methodDocumentsTimezones
DocumentsTimezones
Public methodDocumentsTimezones(Object)
DocumentsTimezones
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodCode examplesetWaitUntilDoneMode
Set whether or not to wait until a xmldataframe is done downloading and parsing before returning data. If not in waitUntilDone mode, when a DataRequest call is made a XmlDataFrame is immediately returned representing the response from OnDemand servers as it arrives. The XmlDataFrame should not be accessed until it's isDone member variable is set to true
Examples
XmlDataFrame df = new XmlDataFrame(log, config, new SearchAndCountParseStrategy(parent.useMatlabFormat()));
while(!df.isDoneParsing()) {
    Thread.Sleep(20);
}
// access the data frame here
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also