System.Windows.Application.convert_keyframe_value_cb_safe C# (CSharp) Method

convert_keyframe_value_cb_safe() private method

private convert_keyframe_value_cb_safe ( Kind kind, IntPtr property_ptr, IntPtr original, Value &converted ) : void
kind Kind
property_ptr IntPtr
original IntPtr
converted Value
return void
		void convert_keyframe_value_cb_safe (Kind kind, IntPtr property_ptr, IntPtr original, out Value converted)
		{
			try {
				convert_keyframe_value_cb (kind, property_ptr, original, out converted);
			} catch (Exception ex) {
				converted = default (Value);
				try {
					Console.WriteLine ("Moonlight: Unhandled exception in apply_object_key_frame_cb_safe: {0}", ex);
				} catch {
				}
			}
		}