WsdlServiceOptionsIsOrdered Property |
Gets a value indicating whether XML tags' order is important.
Namespace:
Hummingbird.TestFramework.CodeGenerator
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public bool IsOrdered { get; }
<DataMemberAttribute>
Public ReadOnly Property IsOrdered As Boolean
Get
public:
[DataMemberAttribute]
property bool IsOrdered {
bool get ();
}
[<DataMemberAttribute>]
member IsOrdered : bool with get
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