本文整理汇总了C#中MetaAttribute类的典型用法代码示例。如果您正苦于以下问题:C# MetaAttribute类的具体用法?C# MetaAttribute怎么用?C# MetaAttribute使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MetaAttribute类属于命名空间,在下文中一共展示了MetaAttribute类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateRangeFromRawValues
private void CreateRangeFromRawValues(string lowerBound, string upperBound, MetaAttribute.MetaAttributeDataType type, FormattedOrRaw format)
{
Contract.Assert(IsValidValues(lowerBound, upperBound, type, format), "Invalid ValueRange.");
_lowerBound = (lowerBound.Length > 0) ? ValueContainer.Create(lowerBound, type, format) : null;
_upperBound = (upperBound.Length > 0) ? ValueContainer.Create(upperBound, type, format) : null;
}
示例2: IsValidValues
/// <summary>
/// To be valid a value must be valid for its type or empty.
/// </summary>
/// <param name="lowerBound"></param><param name="upperBound"></param><param name="type"></param><param name="format"></param>
/// <returns></returns>
public static bool IsValidValues(string lowerBound, string upperBound, MetaAttribute.MetaAttributeDataType type, FormattedOrRaw format)
{
if (lowerBound.Contains("-") || upperBound.Contains("-")) return false;
if (!lowerBound.Equals(String.Empty) && !ValueContainerValidator.Validate(type, lowerBound, format)) return false;
if (!upperBound.Equals(String.Empty) && !ValueContainerValidator.Validate(type, upperBound, format)) return false;
return true;
}
示例3: ValueRange
public ValueRange(string rawValues, MetaAttribute.MetaAttributeDataType type)
{
Contract.Assert(rawValues.IndexOf("-") == rawValues.LastIndexOf("-"),
"A range RawValue cannot have more than one '-' symbol.");
string[] range = rawValues.Split('-');
CreateRangeFromRawValues(range[0], range[1], type, FormattedOrRaw.RAW);
}
示例4: ValueSet
/// <summary>Build a ValueSet using the value string that comes from the UI listbox. ie value,value</summary>
public ValueSet(string rawValues, MetaAttribute.MetaAttributeDataType type)
{
Contract.Assert(IsValidRawValues(rawValues, type), "Invalid ValueSet.");
if (rawValues == String.Empty) return;
string[] values = rawValues.Split(',');
foreach (string value in values) _values.Add(ValueContainer.Create(value, type, FormattedOrRaw.RAW));
}
示例5: IsValidRawValues
public static bool IsValidRawValues(string rawValues, MetaAttribute.MetaAttributeDataType type)
{
if (rawValues.Equals(String.Empty)) return true;
string[] values = rawValues.Split(',');
foreach (string value in values)
{
if (!ValueContainerValidator.Validate(type, value, FormattedOrRaw.RAW)) return false;
}
return true;
}
示例6: LastMsgSeqNumProcessedMetaAttribute
public static string LastMsgSeqNumProcessedMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "SeqNum";
}
return "";
}
示例7: QuoteReqIDMetaAttribute
public static string QuoteReqIDMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "String";
}
return "";
}
示例8: HeartBtIntMetaAttribute
public static string HeartBtIntMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "int";
}
return "";
}
示例9: TokenOffsetMetaAttribute
public static string TokenOffsetMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "";
}
return "";
}
示例10: TransactTimeMetaAttribute
public static string TransactTimeMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "UTCTimestamp";
}
return "";
}
示例11: Validate
/// <summary>Validate a string representing a value (for a preference or attribute).</summary>
/// <param name="type"></param><param name="value"></param><param name="representation"></param>
/// <returns></returns>
public static bool Validate(MetaAttribute.MetaAttributeDataType type, string value, FormattedOrRaw representation)
{
if (value == null) return false;
switch (type)
{
case MetaAttribute.MetaAttributeDataType.STRING: return ValidateString(value, representation);
case MetaAttribute.MetaAttributeDataType.INTEGER: return ValidateInteger(value, representation);
case MetaAttribute.MetaAttributeDataType.CURRENCY: return ValidateCurrency(value, representation);
default: throw new Exception("Unknown MetaAttributeDataType: " + type.ToString());
}
}
示例12: CharacterEncodingMetaAttribute
public static string CharacterEncodingMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "";
}
return "";
}
示例13: MdUpdateActionMetaAttribute
public static string MdUpdateActionMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "";
}
return "";
}
示例14: NumberOfOrdersMetaAttribute
public static string NumberOfOrdersMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "";
}
return "";
}
示例15: MdPriceLevelMetaAttribute
public static string MdPriceLevelMetaAttribute(MetaAttribute metaAttribute)
{
switch (metaAttribute)
{
case MetaAttribute.Epoch: return "unix";
case MetaAttribute.TimeUnit: return "nanosecond";
case MetaAttribute.SemanticType: return "MDPriceLevel";
}
return "";
}