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