SoapServiceIsOrdered Property  | 
 
            Gets a value indicating whether XML tags' order is important.
            
 
    Namespace: 
   Hummingbird.TestFramework.ExtensionProject
    Assembly:
   Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax[DataMemberAttribute]
public bool IsOrdered { get; set; }<DataMemberAttribute>
Public Property IsOrdered As Boolean
	Get
	Set
public:
[DataMemberAttribute]
property bool IsOrdered {
	bool get ();
	void set (bool value);
}[<DataMemberAttribute>]
member IsOrdered : bool with get, set
Property Value
Type: 
Booleantrue if XML Tags must be ordered; otherwise, 
false.
            
Remarks
            In XML documents structures are defined in xsd:Sequence. Some service may accept structures unordered, some not. Use unordered structure lets your requests and response more compatible with other service test softwares.
            
See Also