MonoMobile.Views.ViewParser.GetMethods C# (CSharp) Méthode

GetMethods() private static méthode

private static GetMethods ( Type type ) : System.Reflection.MemberInfo[]
type System.Type
Résultat System.Reflection.MemberInfo[]
		private static MemberInfo[] GetMethods(Type type)
		{
			return type.GetMethods(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance).Where(m =>
			{
				var methodInfo = m as MethodBase;
				return (methodInfo == null || !methodInfo.IsConstructor && !methodInfo.IsSpecialName);
			}).ToArray();
		}

Same methods

ViewParser::GetMethods ( object view ) : System.Reflection.MemberInfo[]