Example #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The SIF RefId that uniquely identifies this authentication object.</param>
 ///<param name="sifRefId">The SIF RefId of a student or staff member</param>
 ///<param name="sifRefObject">The type of SIF object that the SIF_RefId attribute identifies.</param>
 ///
 public Authentication( string refId, string sifRefId, AuthSifRefIdType sifRefObject )
     : base(Adk.SifVersion, InfrastructureDTD.AUTHENTICATION)
 {
     this.RefId = refId;
     this.SIF_RefId = sifRefId;
     this.SetSIF_RefObject( sifRefObject );
 }
Example #2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The SIF RefId that uniquely identifies this authentication object.</param>
 ///<param name="sifRefId">The SIF RefId of a student or staff member</param>
 ///<param name="sifRefObject">The type of SIF object that the SIF_RefId attribute identifies.</param>
 ///
 public Authentication(string refId, string sifRefId, AuthSifRefIdType sifRefObject) : base(Adk.SifVersion, InfrastructureDTD.AUTHENTICATION)
 {
     this.RefId     = refId;
     this.SIF_RefId = sifRefId;
     this.SetSIF_RefObject(sifRefObject);
 }
Example #3
0
 /// <summary>
 /// Sets the value of the <c>SIF_RefObject</c> attribute.
 /// </summary>
 /// <param name="val">A AuthSifRefIdType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The type of SIF object that the SIF_RefId attribute identifies."</para>
 /// <para>This attribute is known by more than one tag name depending on the version of SIF in use.
 /// The ADK will use the tag names shown below when parsing and rendering attributes of this kind.</para>
 /// <list type="table"><listheader><term>Version</term><description>Tag</description></listheader>;
 /// <item><term>2.0 (and greater)</term><description>&lt;SIF_RefObject&gt;</description></item>
 /// </list>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetSIF_RefObject(AuthSifRefIdType val)
 {
     SetField(InfrastructureDTD.AUTHENTICATION_SIF_REFOBJECT, val);
 }
Example #4
0
 /// <summary>
 /// Sets the value of the <c>SIF_RefObject</c> attribute.
 /// </summary>
 /// <param name="val">A AuthSifRefIdType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The type of SIF object that the SIF_RefId attribute identifies."</para>
 /// <para>This attribute is known by more than one tag name depending on the version of SIF in use. 
 /// The ADK will use the tag names shown below when parsing and rendering attributes of this kind.</para>
 /// <list type="table"><listheader><term>Version</term><description>Tag</description></listheader>;
 /// <item><term>2.0 (and greater)</term><description>&lt;SIF_RefObject&gt;</description></item>
 /// </list>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetSIF_RefObject( AuthSifRefIdType val )
 {
     SetField( InfrastructureDTD.AUTHENTICATION_SIF_REFOBJECT, val );
 }