Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeFieldReferenceExpression.cs / 1 / CodeFieldReferenceExpression.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeFieldReferenceExpression : CodeExpression { private CodeExpression targetObject; private string fieldName; ////// Represents a reference to a field. /// ////// public CodeFieldReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeFieldReferenceExpression(CodeExpression targetObject, string fieldName) { TargetObject = targetObject; FieldName = fieldName; } ////// Initializes a new instance of ///. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// Gets or sets /// the target object. /// ////// public string FieldName { get { return (fieldName == null) ? string.Empty : fieldName; } set { fieldName = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the field name. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeFieldReferenceExpression : CodeExpression { private CodeExpression targetObject; private string fieldName; ////// Represents a reference to a field. /// ////// public CodeFieldReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeFieldReferenceExpression(CodeExpression targetObject, string fieldName) { TargetObject = targetObject; FieldName = fieldName; } ////// Initializes a new instance of ///. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// Gets or sets /// the target object. /// ////// public string FieldName { get { return (fieldName == null) ? string.Empty : fieldName; } set { fieldName = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the field name. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PathGeometry.cs
- DataListItemCollection.cs
- HostedImpersonationContext.cs
- OleDbDataReader.cs
- CodeAttributeArgumentCollection.cs
- ChildChangedEventArgs.cs
- sqlnorm.cs
- TaiwanCalendar.cs
- PageHandlerFactory.cs
- UIntPtr.cs
- httpstaticobjectscollection.cs
- ExeConfigurationFileMap.cs
- ErrorProvider.cs
- ListViewDataItem.cs
- PrincipalPermissionMode.cs
- StandardOleMarshalObject.cs
- CodeSnippetTypeMember.cs
- EventData.cs
- KeyEventArgs.cs
- WebBrowserBase.cs
- Light.cs
- Deserializer.cs
- DescendantQuery.cs
- AsyncWaitHandle.cs
- WhereQueryOperator.cs
- HttpCookieCollection.cs
- RowUpdatingEventArgs.cs
- _UriTypeConverter.cs
- ContractUtils.cs
- ISFClipboardData.cs
- VectorConverter.cs
- DocumentViewerHelper.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- Assembly.cs
- CompareInfo.cs
- ButtonColumn.cs
- EmbeddedObject.cs
- ApplicationCommands.cs
- PriorityQueue.cs
- UnmanagedBitmapWrapper.cs
- SmtpCommands.cs
- TextEffect.cs
- QuotedPairReader.cs
- TimersDescriptionAttribute.cs
- cache.cs
- PersonalizableTypeEntry.cs
- COAUTHIDENTITY.cs
- InvalidWMPVersionException.cs
- ScaleTransform.cs
- SqlBinder.cs
- WebPartActionVerb.cs
- CapabilitiesAssignment.cs
- Root.cs
- Size3D.cs
- DesignerDataTableBase.cs
- AspCompat.cs
- Stack.cs
- DataGridColumnFloatingHeader.cs
- AuthorizationRuleCollection.cs
- HandleInitializationContext.cs
- CurrencyManager.cs
- TagNameToTypeMapper.cs
- ThreadAttributes.cs
- DateTime.cs
- PlainXmlWriter.cs
- KnownTypesHelper.cs
- DBDataPermissionAttribute.cs
- EarlyBoundInfo.cs
- TranslateTransform3D.cs
- EdmProperty.cs
- AsyncOperationContext.cs
- StateDesigner.LayoutSelectionGlyph.cs
- ShimAsPublicXamlType.cs
- PolyQuadraticBezierSegment.cs
- HttpContextBase.cs
- BaseDataBoundControl.cs
- Rotation3DAnimation.cs
- DbConnectionStringCommon.cs
- TimersDescriptionAttribute.cs
- SqlOuterApplyReducer.cs
- MediaPlayer.cs
- FileDialog_Vista.cs
- CachedPathData.cs
- webproxy.cs
- MsmqIntegrationMessagePool.cs
- ResetableIterator.cs
- AuthenticatingEventArgs.cs
- EncryptedData.cs
- SoapIgnoreAttribute.cs
- XNameConverter.cs
- AspNetPartialTrustHelpers.cs
- Pen.cs
- WindowsListViewGroupHelper.cs
- Int32CAMarshaler.cs
- PersonalizablePropertyEntry.cs
- Zone.cs
- TraversalRequest.cs
- TextEditorThreadLocalStore.cs
- WindowsListViewScroll.cs
- SharedConnectionInfo.cs