mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
38 lines
1.4 KiB
C#
38 lines
1.4 KiB
C#
|
#region " <20> Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar"
|
|||
|
|
|||
|
// Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com.
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
using System;
|
|||
|
|
|||
|
namespace FileHelpers
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>Allow to declarative set what records must be included or excluded when reading.</summary>
|
|||
|
/// <remarks>See the <a href="attributes.html">Complete Attributes List</a> for more clear info and examples of each one.</remarks>
|
|||
|
/// <seealso href="attributes.html">Attributes List</seealso>
|
|||
|
/// <seealso href="quick_start.html">Quick Start Guide</seealso>
|
|||
|
/// <seealso href="examples.html">Examples of Use</seealso>
|
|||
|
[AttributeUsage(AttributeTargets.Class)]
|
|||
|
public sealed class ConditionalRecordAttribute : Attribute
|
|||
|
{
|
|||
|
internal RecordCondition mCondition;
|
|||
|
internal string mConditionSelector;
|
|||
|
|
|||
|
/// <summary>Allow to declarative show what records must be included or excluded</summary>
|
|||
|
/// <param name="condition">The condition used to include or exclude each record</param>
|
|||
|
/// <param name="selector">The selector for the condition.</param>
|
|||
|
public ConditionalRecordAttribute(RecordCondition condition, string selector)
|
|||
|
{
|
|||
|
if (selector == null || selector.Length == 0)
|
|||
|
throw new BadUsageException("The selector arg for the ConditionalRecordAttribute can't be null or empty.");
|
|||
|
|
|||
|
mCondition = condition;
|
|||
|
mConditionSelector = selector;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|