FindParamCollection Class

Progress Software Corporation - Testing Framework 2018.1 Automation Infrastructure

Note: This API is now obsolete.

Class to manage a collection of FindParam objects.
Inheritance Hierarchy

SystemObject
  System.Collections.GenericDictionaryString, FindParam
    ArtOfTest.WebAii.ObjectModelFindParamCollection

Namespace:  ArtOfTest.WebAii.ObjectModel
Assembly:  ArtOfTest.WebAii (in ArtOfTest.WebAii.dll) Version: 2018.1.116.0 (2018.1.116.0)
Syntax

[SerializableAttribute]
[ObsoleteAttribute("Please use the FindExpression.StringRepresentation as a simpler serialization mechanizm or the FindExpressionsCollection<T>")]
public class FindParamCollection : Dictionary<string, FindParam>, 
	IXmlSerializable, ISerializable

The FindParamCollection type exposes the following members.

Constructors

  NameDescription
Public methodFindParamCollection
Create a new FindParam collection that also be serialized.
Public methodFindParamCollection(SerializationInfo, StreamingContext)
Create new FindParamCollection. Serialization Constructor
Top
Properties

  NameDescription
Public propertyComparer (Inherited from DictionaryString, FindParam.)
Public propertyCount (Inherited from DictionaryString, FindParam.)
Public propertyItem
Access a FindParam using its key.
Public propertyKeys (Inherited from DictionaryString, FindParam.)
Public propertyReturnNullIfNotFound
Gets/Sets whether to throw or return null if a FindParam is not found.
Public propertyValues (Inherited from DictionaryString, FindParam.)
Top
Methods

  NameDescription
Public methodAdd
Add a new FindParam item.
Public methodClear (Inherited from DictionaryString, FindParam.)
Public methodContainsKey (Inherited from DictionaryString, FindParam.)
Public methodContainsValue (Inherited from DictionaryString, FindParam.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator (Inherited from DictionaryString, FindParam.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetObjectData (Inherited from DictionaryString, FindParam.)
Public methodGetSchema
Return the schema used for serialization.
Remarks

Currently we are returning null
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberLoadFromFile
Load a FindParamCollection from a file.
Public methodStatic memberLoadFromXml
Load a FindParamCollection from an xml persisted string.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOnDeserialization
Implements the ISerializable interface and raises the deserialization event when the deserialization is complete.
(Inherited from DictionaryString, FindParam.)
Public methodOnItemAdded
Trigger the ItemAdded event.
Public methodReadXml
Deserialized from the xmlReader and initialize the object
Public methodRemove (Inherited from DictionaryString, FindParam.)
Public methodSave
Serialized and saves the current collection to a file. You can later load that file using FindParamCollection.Load().
Public methodToArray
Get an array of FindParam objects contained in this collection.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodToXml
Serialize and return the current FindParamCollection as a string. You can later use that string to create a FindParamCollection using the .Load().
Public methodTryGetValue (Inherited from DictionaryString, FindParam.)
Public methodWriteXml
Serialize this object to the XmlWriter
Top
Events

  NameDescription
Public eventItemAdded
Occurs when a new items is added to this collection.
Top
See Also

Reference