System.Xaml.Schema.XamlTypeInvoker.GetEnumeratorMethod C# (CSharp) Method

GetEnumeratorMethod() public method

public GetEnumeratorMethod ( ) : MethodInfo
return System.Reflection.MethodInfo
		public virtual MethodInfo GetEnumeratorMethod ()
		{
			return type.UnderlyingType == null || type.LookupCollectionKind () == XamlCollectionKind.None ? null : type.UnderlyingType.GetMethod ("GetEnumerator");
		}