Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / Baml2006 / WpfKnownMemberInvoker.cs / 1305600 / WpfKnownMemberInvoker.cs
using System; using System.Collections.Generic; using System.Text; using System.Xaml.Schema; using System.Reflection; namespace System.Windows.Baml2006 { class WpfKnownMemberInvoker : XamlMemberInvoker { WpfKnownMember _member; bool _hasShouldSerializeMethodBeenLookedup = false; MethodInfo _shouldSerializeMethod = null; public WpfKnownMemberInvoker(WpfKnownMember member) : base(member) { _member = member; } public override object GetValue(object instance) { if (_member.DependencyProperty != null) { return ((DependencyObject)instance).GetValue(_member.DependencyProperty); } else { return _member.GetDelegate(instance); } } public override void SetValue(object instance, object value) { if (_member.DependencyProperty != null) { ((DependencyObject)instance).SetValue(_member.DependencyProperty, value); } else { _member.SetDelegate(instance, value); } } public override ShouldSerializeResult ShouldSerializeValue(object instance) { // Look up the ShouldSerializeMethod if (!_hasShouldSerializeMethodBeenLookedup) { Type declaringType = _member.UnderlyingMember.DeclaringType; string methodName = "ShouldSerialize" + _member.Name; BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static; Type[] args = new Type[] { typeof(DependencyObject) }; ; if (_member.IsAttachable) { _shouldSerializeMethod = declaringType.GetMethod(methodName, flags, null, args, null); } else { flags |= BindingFlags.Instance; _shouldSerializeMethod = declaringType.GetMethod(methodName, flags, null, args, null); } _hasShouldSerializeMethodBeenLookedup = true; } // Invoke the method if we found one if (_shouldSerializeMethod != null) { bool result; var args = new object[] { instance as DependencyObject }; if (_member.IsAttachable) { result = (bool)_shouldSerializeMethod.Invoke(null, args); } else { result = (bool)_shouldSerializeMethod.Invoke(instance, args); } return result ? ShouldSerializeResult.True : ShouldSerializeResult.False; } DependencyObject dObject = instance as DependencyObject; if (dObject != null && _member.DependencyProperty != null) { // Call DO's ShouldSerializeProperty to see if the property is set. // If the property is unset, the property should not be serialized bool isPropertySet = dObject.ShouldSerializeProperty(_member.DependencyProperty); if (!isPropertySet) { return ShouldSerializeResult.False; } } return base.ShouldSerializeValue(instance); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Text; using System.Xaml.Schema; using System.Reflection; namespace System.Windows.Baml2006 { class WpfKnownMemberInvoker : XamlMemberInvoker { WpfKnownMember _member; bool _hasShouldSerializeMethodBeenLookedup = false; MethodInfo _shouldSerializeMethod = null; public WpfKnownMemberInvoker(WpfKnownMember member) : base(member) { _member = member; } public override object GetValue(object instance) { if (_member.DependencyProperty != null) { return ((DependencyObject)instance).GetValue(_member.DependencyProperty); } else { return _member.GetDelegate(instance); } } public override void SetValue(object instance, object value) { if (_member.DependencyProperty != null) { ((DependencyObject)instance).SetValue(_member.DependencyProperty, value); } else { _member.SetDelegate(instance, value); } } public override ShouldSerializeResult ShouldSerializeValue(object instance) { // Look up the ShouldSerializeMethod if (!_hasShouldSerializeMethodBeenLookedup) { Type declaringType = _member.UnderlyingMember.DeclaringType; string methodName = "ShouldSerialize" + _member.Name; BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static; Type[] args = new Type[] { typeof(DependencyObject) }; ; if (_member.IsAttachable) { _shouldSerializeMethod = declaringType.GetMethod(methodName, flags, null, args, null); } else { flags |= BindingFlags.Instance; _shouldSerializeMethod = declaringType.GetMethod(methodName, flags, null, args, null); } _hasShouldSerializeMethodBeenLookedup = true; } // Invoke the method if we found one if (_shouldSerializeMethod != null) { bool result; var args = new object[] { instance as DependencyObject }; if (_member.IsAttachable) { result = (bool)_shouldSerializeMethod.Invoke(null, args); } else { result = (bool)_shouldSerializeMethod.Invoke(instance, args); } return result ? ShouldSerializeResult.True : ShouldSerializeResult.False; } DependencyObject dObject = instance as DependencyObject; if (dObject != null && _member.DependencyProperty != null) { // Call DO's ShouldSerializeProperty to see if the property is set. // If the property is unset, the property should not be serialized bool isPropertySet = dObject.ShouldSerializeProperty(_member.DependencyProperty); if (!isPropertySet) { return ShouldSerializeResult.False; } } return base.ShouldSerializeValue(instance); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlCommandSet.cs
- TimeEnumHelper.cs
- ApplicationActivator.cs
- CompilationLock.cs
- Base64Decoder.cs
- OleDbCommandBuilder.cs
- TextBreakpoint.cs
- ChildTable.cs
- ProcessHostFactoryHelper.cs
- RegistryPermission.cs
- WebPartCatalogAddVerb.cs
- TextEditorCopyPaste.cs
- CreateBookmarkScope.cs
- __Filters.cs
- XmlQueryStaticData.cs
- DateTimePicker.cs
- SHA384CryptoServiceProvider.cs
- IncrementalCompileAnalyzer.cs
- AssemblyCollection.cs
- ViewBase.cs
- ScaleTransform.cs
- SizeKeyFrameCollection.cs
- AssemblyNameProxy.cs
- SystemIPGlobalStatistics.cs
- SHA256.cs
- WSMessageEncoding.cs
- ImageKeyConverter.cs
- PathFigureCollectionValueSerializer.cs
- EncoderExceptionFallback.cs
- FullTrustAssembly.cs
- SystemDiagnosticsSection.cs
- ScriptIgnoreAttribute.cs
- CompressEmulationStream.cs
- GifBitmapEncoder.cs
- IsolatedStorage.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- Select.cs
- DataObjectMethodAttribute.cs
- Paragraph.cs
- MemberDescriptor.cs
- TextMessageEncodingBindingElement.cs
- StreamInfo.cs
- RoutedEventValueSerializer.cs
- HttpResponseInternalWrapper.cs
- TableLayoutStyle.cs
- COM2FontConverter.cs
- OleDbCommand.cs
- SqlUdtInfo.cs
- XmlTypeAttribute.cs
- XMLUtil.cs
- UpdateExpressionVisitor.cs
- AxisAngleRotation3D.cs
- Brushes.cs
- SqlErrorCollection.cs
- UnhandledExceptionEventArgs.cs
- CachingHintValidation.cs
- COM2ExtendedBrowsingHandler.cs
- HandleRef.cs
- Rijndael.cs
- GraphicsState.cs
- ResourceDescriptionAttribute.cs
- StyleCollection.cs
- TextEditorLists.cs
- FontStretches.cs
- Math.cs
- SoapSchemaMember.cs
- HMACMD5.cs
- XmlCountingReader.cs
- StickyNote.cs
- XsltException.cs
- CompilationPass2Task.cs
- XmlMtomWriter.cs
- BooleanStorage.cs
- DataServiceBuildProvider.cs
- ContainerVisual.cs
- OracleRowUpdatingEventArgs.cs
- SQLSingle.cs
- TraceHandler.cs
- FixedSOMElement.cs
- AttachedPropertyBrowsableAttribute.cs
- ColorMatrix.cs
- CompositeFontFamily.cs
- EntityReference.cs
- HttpClientChannel.cs
- PersonalizationStateInfoCollection.cs
- Renderer.cs
- PolicyLevel.cs
- IDReferencePropertyAttribute.cs
- BitmapEffectInputConnector.cs
- TimeSpanStorage.cs
- ToolStripLabel.cs
- WindowsIdentity.cs
- ReadOnlyCollectionBase.cs
- _AutoWebProxyScriptEngine.cs
- CharUnicodeInfo.cs
- EventArgs.cs
- EditorPartDesigner.cs
- MsmqMessage.cs
- EdmFunction.cs
- LinkedList.cs