Esempio n. 1
0
 /// <summary>
 /// Removes a <see cref="SIF_Condition"/> object instance. More than one instance can be defined for this object because it is a repeatable field element.
 /// </summary>
 /// <param name="SifElement">Identifies the SIF_Condition object to remove by its SIF_Element value</param>
 /// <param name="SifOperator">Identifies the SIF_Condition object to remove by its SIF_Operator value</param>
 /// <param name="SifValue">Identifies the SIF_Condition object to remove by its SIF_Value value</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void RemoveSIF_Condition( string SifElement, Operators SifOperator, string SifValue )
 {
     RemoveChild( InfraDTD.SIF_CONDITIONS_SIF_CONDITION, new String[] { SifElement.ToString(),SifOperator.ToString(),SifValue.ToString() } );
 }
Esempio n. 2
0
 /// <summary>
 /// Gets a <see cref="SIF_Condition"/> object instance. More than one instance can be defined for this object because it is a repeatable field element.
 /// </summary>
 /// <param name="SifElement">Identifies the SIF_Condition object to return by its "SIF_Element" attribute value</param>
 /// <param name="SifOperator">Identifies the SIF_Condition object to return by its "SIF_Operator" attribute value</param>
 /// <param name="SifValue">Identifies the SIF_Condition object to return by its "SIF_Value" attribute value</param>
 /// <returns>A SIF_Condition object</returns>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public SIF_Condition GetSIF_Condition( string SifElement, Operators SifOperator, string SifValue )
 {
     return (SIF_Condition)GetChild( InfraDTD.SIF_CONDITIONS_SIF_CONDITION, new string[] { SifElement.ToString(),SifOperator.ToString(),SifValue.ToString() } );
 }