Exemple #1
0
 /// <summary>
 /// Instantiated a new instance of the <see cref="AttributeValueBoolean"/> class
 /// </summary>
 /// <param name="attributeDefinition">The <see cref="AttributeDefinitionBoolean"/> for which this is the default value</param>
 /// <remarks>
 /// This constructor shall be used when setting the default value of an <see cref="AttributeDefinitionBoolean"/>
 /// </remarks>
 internal AttributeValueBoolean(AttributeDefinitionBoolean attributeDefinition)
     : base(attributeDefinition)
 {
     this.OwningDefinition = attributeDefinition;
 }
Exemple #2
0
 /// <summary>
 /// Instantiated a new instance of the <see cref="AttributeValueBoolean"/> class
 /// </summary>
 /// <param name="attributeDefinition">The <see cref="AttributeDefinitionBoolean"/> for which this is the default value</param>
 /// <remarks>
 /// This constructor shall be used when setting the default value of an <see cref="AttributeDefinitionBoolean"/>
 /// </remarks>
 /// <param name="loggerFactory">
 /// The (injected) <see cref="ILoggerFactory"/> used to setup logging
 /// </param>
 internal AttributeValueBoolean(AttributeDefinitionBoolean attributeDefinition, ILoggerFactory loggerFactory)
     : base(attributeDefinition, loggerFactory)
 {
     this.OwningDefinition = attributeDefinition;
 }