Example #1
0
		/// <summary>
		/// Creates an Environment using the specified arguments.
		/// </summary>
		/// <param name="attributes">The attribute list.</param>
		/// <param name="schemaVersion">The version of the schema that was used to validate.</param>
		public EnvironmentElement( AttributeCollection attributes, XacmlVersion schemaVersion )
			: base( attributes, schemaVersion )
		{
		}
Example #2
0
		/// <summary>
		/// Creates a Subject using the specified arguments.
		/// </summary>
		/// <param name="subjectCategory">The subject category.</param>
		/// <param name="attributes">The attribute list.</param>
		/// <param name="schemaVersion">The version of the schema that was used to validate.</param>
		public SubjectElement( string subjectCategory, AttributeCollection attributes, XacmlVersion schemaVersion ) 
			: base( subjectCategory, attributes, schemaVersion )
		{
		}
Example #3
0
 /// <summary>
 /// Creates a Subject using the specified arguments.
 /// </summary>
 /// <param name="subjectCategory">The subject category.</param>
 /// <param name="attributes">The attribute list.</param>
 /// <param name="schemaVersion">The version of the schema that was used to validate.</param>
 public SubjectElement(string subjectCategory, AttributeCollection attributes, XacmlVersion schemaVersion)
     : base(subjectCategory, attributes, schemaVersion)
 {
 }
Example #4
0
 /// <summary>
 /// Creates a Action using the specified arguments.
 /// </summary>
 /// <param name="attributes">The attribute list.</param>
 /// <param name="schemaVersion">The version of the schema that was used to validate.</param>
 public ActionElement(AttributeCollection attributes, XacmlVersion schemaVersion)
     : base(attributes, schemaVersion)
 {
 }
Example #5
0
		/// <summary>
		/// Creates a Resource using the specified arguments.
		/// </summary>
		/// <param name="resourceScope">The resource scope for this target item.</param>
		/// <param name="resourceContent">The resource content in the context document.</param>
		/// <param name="attributes">The attribute list.</param>
		/// <param name="schemaVersion">The version of the schema that was used to validate.</param>
		public ResourceElement( ResourceContentElement resourceContent, ResourceScope resourceScope, AttributeCollection attributes, XacmlVersion schemaVersion ) 
			: base( resourceContent, resourceScope, attributes, schemaVersion )
		{
		}