Mono.Xaml.XamlObjectElement.ResolveAttachedPropertySetter C# (CSharp) Méthode

ResolveAttachedPropertySetter() private méthode

private ResolveAttachedPropertySetter ( string base_name, Type type, Type return_type ) : MethodInfo
base_name string
type System.Type
return_type System.Type
Résultat System.Reflection.MethodInfo
		private MethodInfo ResolveAttachedPropertySetter (string base_name, Type type, Type return_type)
		{
			return type.GetMethod (String.Concat ("Set", base_name), XamlParser.METHOD_BINDING_FLAGS);
		}
	}