System.Xaml.XamlObjectWriterInternal.GetCorrectlyTypedValue C# (CSharp) Method

GetCorrectlyTypedValue() private method

private GetCorrectlyTypedValue ( XamlType xt, object value ) : object
xt XamlType
value object
return object
		object GetCorrectlyTypedValue (XamlType xt, object value)
		{
			try {
				return DoGetCorrectlyTypedValue (xt, value);
			} catch (XamlObjectWriterException) {
				throw;
			} catch (Exception ex) {
				// For + ex.Message, the runtime should print InnerException message like .NET does.
				throw new XamlObjectWriterException (String.Format ("Could not convert object \'{0}' (of type {1}) to {2}: ", value, value != null ? (object) value.GetType () : "(null)", xt)  + ex.Message, ex);
			}
		}