You created the given option class while doing configuration in MVC .NET.
public class PositionOptions { public const string Position = "Position"; public string Title { get; set; } public string Name { get; set; } }
In this context, which of these statements is TRUE?
Options
- While making this option class you ensured that all public read-write properties of the type are unbound.
- While making this option class you ensured that the class is abstract with a private parameterless constructor.
- While making this option class you ensured that the class is non-abstract with a public parameterless constructor.
- None of these