Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeFieldReferenceExpression.cs / 1305376 / CodeFieldReferenceExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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. /// ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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
- PropertyValidationContext.cs
- PingOptions.cs
- Geometry.cs
- QueryGenerator.cs
- oledbmetadatacollectionnames.cs
- AdditionalEntityFunctions.cs
- AppDomain.cs
- HttpHeaderCollection.cs
- OutputCacheSection.cs
- DataGridColumnEventArgs.cs
- XsltContext.cs
- DocumentStatusResources.cs
- SecurityProtocolFactory.cs
- SelectionPattern.cs
- ExpandCollapseProviderWrapper.cs
- ThrowHelper.cs
- MethodToken.cs
- WindowsScroll.cs
- SHA384.cs
- ValidationUtility.cs
- PointHitTestParameters.cs
- ViewStateModeByIdAttribute.cs
- PresentationAppDomainManager.cs
- XmlWhitespace.cs
- TrackingStringDictionary.cs
- EmbeddedMailObject.cs
- UIServiceHelper.cs
- QilInvokeLateBound.cs
- DefaultPrintController.cs
- InfoCardSymmetricCrypto.cs
- ListenerChannelContext.cs
- EntityDataSourceReferenceGroup.cs
- TrackPointCollection.cs
- XPathEmptyIterator.cs
- DATA_BLOB.cs
- X509CertificateCollection.cs
- NamedPipeProcessProtocolHandler.cs
- JsonStringDataContract.cs
- SecurityKeyType.cs
- RangeContentEnumerator.cs
- MapPathBasedVirtualPathProvider.cs
- WebEventCodes.cs
- SmiGettersStream.cs
- XmlResolver.cs
- InputQueue.cs
- DispatcherFrame.cs
- DataRelationPropertyDescriptor.cs
- ListControlActionList.cs
- ArraySubsetEnumerator.cs
- MutexSecurity.cs
- UrlMappingsModule.cs
- FamilyMap.cs
- NetworkInformationPermission.cs
- RTTypeWrapper.cs
- TextOnlyOutput.cs
- DispatcherExceptionFilterEventArgs.cs
- EntityStoreSchemaGenerator.cs
- DefaultMemberAttribute.cs
- RepeatButton.cs
- smtpconnection.cs
- TreeBuilder.cs
- ConfigurationSchemaErrors.cs
- VerticalConnector.xaml.cs
- AssemblyNameProxy.cs
- PathFigure.cs
- ListViewGroup.cs
- IndexedString.cs
- StateDesignerConnector.cs
- FormClosedEvent.cs
- DEREncoding.cs
- StylusPointCollection.cs
- DefaultMemberAttribute.cs
- IgnoreFlushAndCloseStream.cs
- SoapHeaders.cs
- RadioButton.cs
- PropertyGroupDescription.cs
- WeakReferenceList.cs
- ResourceBinder.cs
- SocketException.cs
- ProfileGroupSettingsCollection.cs
- WindowsPen.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- QuarticEase.cs
- Update.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- SqlBinder.cs
- StorageSetMapping.cs
- RequiredFieldValidator.cs
- PolicyStatement.cs
- TranslateTransform3D.cs
- XmlDataCollection.cs
- SimpleApplicationHost.cs
- ExpressionNormalizer.cs
- BoolExpression.cs
- FileInfo.cs
- EmissiveMaterial.cs
- SystemColors.cs
- PropertyToken.cs
- SequenceQuery.cs
- SecurityToken.cs