Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodePropertyReferenceExpression.cs / 1 / CodePropertyReferenceExpression.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 CodePropertyReferenceExpression : CodeExpression { private CodeExpression targetObject; private string propertyName; private CodeExpressionCollection parameters = new CodeExpressionCollection(); ////// Represents a reference to a property. /// ////// public CodePropertyReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodePropertyReferenceExpression(CodeExpression targetObject, string propertyName) { TargetObject = targetObject; PropertyName = propertyName; } ////// Initializes a new instance of ///using the specified target object and property /// name. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// The target object containing the property this ///references. /// /// public string PropertyName { get { return (propertyName == null) ? string.Empty : propertyName; } set { propertyName = value; } } } }/// The name of the property to reference. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AdapterDictionary.cs
- CqlLexerHelpers.cs
- SpnegoTokenProvider.cs
- XmlDataDocument.cs
- QuaternionAnimation.cs
- ValidationEventArgs.cs
- ComboBoxItem.cs
- EventManager.cs
- ProcessHost.cs
- MessageProperties.cs
- SQLByte.cs
- DataChangedEventManager.cs
- util.cs
- RSAProtectedConfigurationProvider.cs
- PrintDialogDesigner.cs
- XmlSiteMapProvider.cs
- DetailsViewPageEventArgs.cs
- ButtonBaseAdapter.cs
- StyleHelper.cs
- Documentation.cs
- CodeRemoveEventStatement.cs
- BroadcastEventHelper.cs
- TextAutomationPeer.cs
- FocusChangedEventArgs.cs
- AutomationElement.cs
- WebZoneDesigner.cs
- DeclarationUpdate.cs
- SecurityContextTokenCache.cs
- MappingException.cs
- CompiledQuery.cs
- StateManagedCollection.cs
- SerializationObjectManager.cs
- ObjectItemCollection.cs
- NameValuePermission.cs
- InvokeBase.cs
- SystemUdpStatistics.cs
- UIElement3D.cs
- TypeUtils.cs
- MeasureItemEvent.cs
- __Filters.cs
- CroppedBitmap.cs
- CultureTable.cs
- DependsOnAttribute.cs
- DataObjectEventArgs.cs
- ZoneButton.cs
- TrackPointCollection.cs
- StatusBarDrawItemEvent.cs
- MessageAction.cs
- QueryCacheManager.cs
- PasswordRecoveryDesigner.cs
- Compiler.cs
- EntityKey.cs
- WhileDesigner.xaml.cs
- WindowsRegion.cs
- CaseExpr.cs
- WebPartTracker.cs
- ServiceInfo.cs
- CodeDOMUtility.cs
- DBDataPermissionAttribute.cs
- SecurityPermission.cs
- XmlSignificantWhitespace.cs
- ScriptControlManager.cs
- PathFigure.cs
- InputProviderSite.cs
- DataContractFormatAttribute.cs
- LeaseManager.cs
- XslNumber.cs
- PropertyRecord.cs
- NotifyIcon.cs
- CustomTypeDescriptor.cs
- HostingPreferredMapPath.cs
- MimeMultiPart.cs
- DeobfuscatingStream.cs
- MatrixTransform.cs
- CreateUserWizardStep.cs
- TemplateBindingExtensionConverter.cs
- _PooledStream.cs
- ApplyImportsAction.cs
- WebFormDesignerActionService.cs
- EntityTransaction.cs
- DataGridCellItemAutomationPeer.cs
- XhtmlConformanceSection.cs
- __Filters.cs
- DataGridViewRowPostPaintEventArgs.cs
- ListSortDescriptionCollection.cs
- ListBox.cs
- MouseWheelEventArgs.cs
- SmtpNegotiateAuthenticationModule.cs
- FileUpload.cs
- LongTypeConverter.cs
- VBCodeProvider.cs
- ObjectDataSourceFilteringEventArgs.cs
- mediaeventshelper.cs
- WorkflowPersistenceService.cs
- PolyLineSegment.cs
- WrappedIUnknown.cs
- EntityWithKeyStrategy.cs
- GridViewColumnHeaderAutomationPeer.cs
- ProfileGroupSettings.cs
- MediaTimeline.cs