Exemplo n.º 1
0
		/// <summary>
		/// A protected default constructor.
		/// </summary>
		/// <param name="schemaVersion">The schema used to validate the document.</param>
		/// <param name="schema">The schema that defines this element.</param>
		protected StringValueBase( XacmlSchema schema, XacmlVersion schemaVersion )
			: base( schema, schemaVersion )
		{
		}
Exemplo n.º 2
0
 /// <summary>
 /// A protected default constructor.
 /// </summary>
 /// <param name="schemaVersion">The schema used to validate the document.</param>
 /// <param name="schema">The schema that defines this element.</param>
 protected StringValueBase(XacmlSchema schema, XacmlVersion schemaVersion)
     : base(schema, schemaVersion)
 {
 }
Exemplo n.º 3
0
		/// <summary>
		/// Default constructor.
		/// </summary>
		/// <param name="schema">The schema that defines the element.</param>
		/// <param name="schemaVersion">The version of the schema used to load the element.</param>
		protected XacmlElement( XacmlSchema schema, XacmlVersion schemaVersion )
		{
			_schema = schema;
			_schemaVersion = schemaVersion;
		}
Exemplo n.º 4
0
 /// <summary>
 /// Default constructor.
 /// </summary>
 /// <param name="schema">The schema that defines the element.</param>
 /// <param name="schemaVersion">The version of the schema used to load the element.</param>
 protected XacmlElement(XacmlSchema schema, XacmlVersion schemaVersion)
 {
     _schema        = schema;
     _schemaVersion = schemaVersion;
 }