当前位置: 首页>>代码示例>>C#>>正文


C# Enum.HasFlag方法代码示例

本文整理汇总了C#中System.Enum.HasFlag方法的典型用法代码示例。如果您正苦于以下问题:C# Enum.HasFlag方法的具体用法?C# Enum.HasFlag怎么用?C# Enum.HasFlag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Enum的用法示例。


在下文中一共展示了Enum.HasFlag方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetSetValues

        /// <summary>
        /// Returns an array of set values in the given enum
        /// </summary>
        /// <remarks>
        /// This will return each set value if you have [Flags], or the single value if you don't
        /// </remarks>
        public static Array GetSetValues(Enum enumeration)
        {
            List<object> setValues = new List<object>();
            foreach (object possibleValue in Enum.GetValues(enumeration.GetType()))
            {
                if (enumeration.HasFlag((Enum)possibleValue))
                {
                    setValues.Add(possibleValue);
                }
            }

            return setValues.ToArray();
        }
开发者ID:ramarag,项目名称:XTask,代码行数:19,代码来源:Enums.cs

示例2: PreventInvalidAudienceTypeForWorkStage

		/// ------------------------------------------------------------------------------------
// ReSharper disable once UnusedParameter.Local
		private void PreventInvalidAudienceTypeForWorkStage(Enum invalidAudience, WorkStage stage)
		{
			if ((invalidAudience != null) && (invalidAudience.HasFlag(_metsAudienceType)))
			{
				throw new InvalidOperationException(string.Format(
					"Resources with an audience of \"{0}\" cannot have a work stage of {1}",
					_metsAudienceType, stage));
			}
		}
开发者ID:jwickberg,项目名称:libpalaso,代码行数:11,代码来源:RampArchivingDlgViewModel.cs

示例3: GetFlags

 static IEnumerable<Enum> GetFlags(Enum input)
 {
     foreach (Enum value in Enum.GetValues(input.GetType()))
         if (input.HasFlag(value))
             yield return value;
 }
开发者ID:mauriciominella,项目名称:PrototipoFazBem,代码行数:6,代码来源:ProductDetailViewModel.cs

示例4: HasFlag

 public static bool HasFlag(Enum value, Enum flag)
 {
     //Added in .NET 4.0
     return value.HasFlag(flag);
 }
开发者ID:qwertie,项目名称:Theraot,代码行数:5,代码来源:EnumHelper.cs

示例5: GetFlags

 /// <summary>
 ///     Iterate over the bit values in enum property.
 /// </summary>
 private static IEnumerable<string> GetFlags(Enum input)
 {
     foreach (Enum value in Enum.GetValues(input.GetType()))
         if (input.HasFlag(value))
             yield return value.ToString();
 }
开发者ID:Maxwolf,项目名称:Resume,代码行数:9,代码来源:Person.cs

示例6: AdjustBinding

 public static void AdjustBinding(string hotkeyName, Enum key, Dictionary<string, Hotkey> dict)
 {
     dict[hotkeyName].Key = (Keys)key;
     dict[hotkeyName].Ctrl = key.HasFlag(Keys.Control);
     dict[hotkeyName].Alt = key.HasFlag(Keys.Alt);
     dict[hotkeyName].Shift = key.HasFlag(Keys.Shift);
 }
开发者ID:twinspire,项目名称:twinspire,代码行数:7,代码来源:HotkeyOptions.cs

示例7: Resolve


//.........这里部分代码省略.........
			if (e is ThreadType)
			{ 
				switch((ThreadType)e)
				{
					case ThreadType.Cpu: return "cpu";
					case ThreadType.Wait: return "wait";
					case ThreadType.Block: return "block";
				}
			
			}
			
			if (e is PercolateFormat)
			{ 
				switch((PercolateFormat)e)
				{
					case PercolateFormat.Ids: return "ids";
				}
			
			}
			
			if (e is GroupBy)
			{ 
				switch((GroupBy)e)
				{
					case GroupBy.Nodes: return "nodes";
					case GroupBy.Parents: return "parents";
				}
			
			}
			
			if (e is ClusterStateMetric)
			{ 
				var list = new List<string>();
				if (e.HasFlag(ClusterStateMetric.Blocks)) list.Add("blocks");
				if (e.HasFlag(ClusterStateMetric.Metadata)) list.Add("metadata");
				if (e.HasFlag(ClusterStateMetric.Nodes)) list.Add("nodes");
				if (e.HasFlag(ClusterStateMetric.RoutingTable)) list.Add("routing_table");
				if (e.HasFlag(ClusterStateMetric.RoutingNodes)) list.Add("routing_nodes");
				if (e.HasFlag(ClusterStateMetric.MasterNode)) list.Add("master_node");
				if (e.HasFlag(ClusterStateMetric.Version)) list.Add("version");
				if (e.HasFlag(ClusterStateMetric.All)) return "_all";
				return string.Join(",", list);
			
			}
			
			if (e is Feature)
			{ 
				var list = new List<string>();
				if (e.HasFlag(Feature.Settings)) list.Add("_settings");
				if (e.HasFlag(Feature.Mappings)) list.Add("_mappings");
				if (e.HasFlag(Feature.Aliases)) list.Add("_aliases");
				return string.Join(",", list);
			
			}
			
			if (e is IndicesStatsMetric)
			{ 
				var list = new List<string>();
				if (e.HasFlag(IndicesStatsMetric.Completion)) list.Add("completion");
				if (e.HasFlag(IndicesStatsMetric.Docs)) list.Add("docs");
				if (e.HasFlag(IndicesStatsMetric.Fielddata)) list.Add("fielddata");
				if (e.HasFlag(IndicesStatsMetric.QueryCache)) list.Add("query_cache");
				if (e.HasFlag(IndicesStatsMetric.Flush)) list.Add("flush");
				if (e.HasFlag(IndicesStatsMetric.Get)) list.Add("get");
				if (e.HasFlag(IndicesStatsMetric.Indexing)) list.Add("indexing");
				if (e.HasFlag(IndicesStatsMetric.Merge)) list.Add("merge");
开发者ID:c1sc0,项目名称:elasticsearch-net,代码行数:67,代码来源:Enums.Generated.cs

示例8: HasFlag

 public static void HasFlag(Enum e, Enum flag, bool expected)
 {
     Assert.Equal(expected, e.HasFlag(flag));
 }
开发者ID:AndreGleichner,项目名称:corefx,代码行数:4,代码来源:EnumTests.cs

示例9: EnumHasOnlyOne

        /// <summary>
        /// Checks if input has only one of the values set.
        /// </summary>
        /// <param name="input">The input value.</param>
        /// <param name="values">The values to check against.</param>
        /// <returns>Returns true if input has only one of the values, false otherwise.</returns>
        private bool EnumHasOnlyOne(Enum input, params Enum[] values)
        {
            if (values.Length < 1)
                return false;

            var hasFlag = false;

            foreach (var value in values) {
                if (input.HasFlag(value)) {
                    if (hasFlag)
                        return false;
                    else
                        hasFlag = true;
                }
            }

            return hasFlag;
        }
开发者ID:darkalemanbr,项目名称:MagmaGrimDawnToolkit,代码行数:24,代码来源:Arc.cs


注:本文中的System.Enum.HasFlag方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。