Mono.Xaml.XamlPropertySetter.LookupDependencyProperty C# (CSharp) Method

LookupDependencyProperty() public method

public LookupDependencyProperty ( ) : DependencyProperty
return System.Windows.DependencyProperty
		public DependencyProperty LookupDependencyProperty ()
		{
			Type type = DeclaringType;

			Types.Ensure (type);

			Kind kind = Deployment.Current.Types.TypeToNativeKind (type);
			if (kind == Kind.INVALID)
				return null;

			try {
				return DependencyProperty.Lookup (kind, Name);
			} catch {
				return null;
			}
		}