When using IncludeStructure, it would be nice to be able to deny certain fields from getting logged. e.g.
class Customer
{
public string Name { get; set; }
[NeverLog]
public CreditCardNumber { get; set; }
}
Use "duck" typing to allow client to define the attribute in their own code base.
When using
IncludeStructure, it would be nice to be able to deny certain fields from getting logged. e.g.Use "duck" typing to allow client to define the attribute in their own code base.