/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;TeachingCredential&amp;gt; element</param>
 ///
 public TeachingCredential( TeachingCredentialType value )
     : base(ProfdevDTD.TEACHINGCREDENTIAL)
 {
     this.SetValue( value );
 }
 /// <summary>
 /// Removes a <see cref="TeachingCredential"/> object instance. More than one instance can be defined for this object because it is a repeatable field element.
 /// </summary>
 /// <param name="Value">Identifies the TeachingCredential object to remove by its Value value</param>
 /// <remarks>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void RemoveTeachingCredentialType( TeachingCredentialType Value )
 {
     RemoveChild( ProfdevDTD.EMPLOYEECREDENTIAL_TEACHINGCREDENTIALTYPE, new String[] { Value.ToString() } );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A TeachingCredentialType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;TeachingCredential&amp;gt; element"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetValue( TeachingCredentialType val )
 {
     SetField( ProfdevDTD.TEACHINGCREDENTIAL, val );
 }
 ///<summary>Adds the value of the <c>&lt;TeachingCredentialType&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;TeachingCredential&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setTeachingCredentialType</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddTeachingCredentialType</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void AddTeachingCredentialType( TeachingCredentialType Value )
 {
     AddChild( ProfdevDTD.EMPLOYEECREDENTIAL_TEACHINGCREDENTIALTYPE, new TeachingCredential( Value ) );
 }
 /// <summary>
 /// Gets a <see cref="TeachingCredential"/> object instance. More than one instance can be defined for this object because it is a repeatable field element.
 /// </summary>
 /// <param name="Value">Identifies the TeachingCredential object to return by its "Value" attribute value</param>
 /// <returns>A TeachingCredential object</returns>
 /// <remarks>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public TeachingCredential GetTeachingCredentialType( TeachingCredentialType Value )
 {
     return (TeachingCredential)GetChild( ProfdevDTD.EMPLOYEECREDENTIAL_TEACHINGCREDENTIALTYPE, new string[] { Value.ToString() } );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A TeachingCredentialType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;TeachingCredential&amp;gt; element"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetValue(TeachingCredentialType val)
 {
     SetField(ProfdevDTD.TEACHINGCREDENTIAL, val);
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;TeachingCredential&amp;gt; element</param>
 ///
 public TeachingCredential(TeachingCredentialType value) : base(ProfdevDTD.TEACHINGCREDENTIAL)
 {
     this.SetValue(value);
 }
Example #8
0
 /// <summary>
 /// Gets a <see cref="TeachingCredential"/> object instance. More than one instance can be defined for this object because it is a repeatable field element.
 /// </summary>
 /// <param name="Value">Identifies the TeachingCredential object to return by its "Value" attribute value</param>
 /// <returns>A TeachingCredential object</returns>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public TeachingCredential GetTeachingCredentialType(TeachingCredentialType Value)
 {
     return((TeachingCredential)GetChild(ProfdevDTD.EMPLOYEECREDENTIAL_TEACHINGCREDENTIALTYPE, new string[] { Value.ToString() }));
 }
Example #9
0
 /// <summary>
 /// Removes a <see cref="TeachingCredential"/> object instance. More than one instance can be defined for this object because it is a repeatable field element.
 /// </summary>
 /// <param name="Value">Identifies the TeachingCredential object to remove by its Value value</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void RemoveTeachingCredentialType(TeachingCredentialType Value)
 {
     RemoveChild(ProfdevDTD.EMPLOYEECREDENTIAL_TEACHINGCREDENTIALTYPE, new String[] { Value.ToString() });
 }
Example #10
0
 ///<summary>Adds the value of the <c>&lt;TeachingCredentialType&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;TeachingCredential&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setTeachingCredentialType</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddTeachingCredentialType</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void AddTeachingCredentialType(TeachingCredentialType Value)
 {
     AddChild(ProfdevDTD.EMPLOYEECREDENTIAL_TEACHINGCREDENTIALTYPE, new TeachingCredential(Value));
 }