Code:
/ DotNET / DotNET / 8.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
- BCLDebug.cs
- TreeBuilderXamlTranslator.cs
- HtmlTitle.cs
- AstTree.cs
- QueryStack.cs
- HttpCookie.cs
- ReverseQueryOperator.cs
- PixelFormats.cs
- NullableDecimalMinMaxAggregationOperator.cs
- DataGridViewBindingCompleteEventArgs.cs
- ReferencedCategoriesDocument.cs
- LogEntryDeserializer.cs
- SqlCacheDependencySection.cs
- ListDesigner.cs
- DataColumnPropertyDescriptor.cs
- WebPartHelpVerb.cs
- OleDbParameterCollection.cs
- AppDomainManager.cs
- DistributedTransactionPermission.cs
- CodeNamespace.cs
- LocatorBase.cs
- ValidateNames.cs
- ColorContext.cs
- PtsHost.cs
- EntityUtil.cs
- StringWriter.cs
- SmtpDigestAuthenticationModule.cs
- XmlSerializerVersionAttribute.cs
- ObjectToIdCache.cs
- WindowProviderWrapper.cs
- HatchBrush.cs
- Comparer.cs
- ResourceLoader.cs
- BezierSegment.cs
- ImageMapEventArgs.cs
- DataServices.cs
- _KerberosClient.cs
- StringAnimationUsingKeyFrames.cs
- RawAppCommandInputReport.cs
- WebContext.cs
- BamlLocalizer.cs
- VisualBasicSettingsHandler.cs
- ConfigurationPropertyCollection.cs
- ConfigurationManagerHelperFactory.cs
- CompositeActivityDesigner.cs
- Figure.cs
- ConfigXmlText.cs
- SettingsPropertyNotFoundException.cs
- QilNode.cs
- MessageSecurityVersionConverter.cs
- CompiledScopeCriteria.cs
- DataMemberFieldEditor.cs
- invalidudtexception.cs
- ManipulationStartedEventArgs.cs
- CacheHelper.cs
- InitializationEventAttribute.cs
- DbParameterCollection.cs
- ArrangedElementCollection.cs
- SafeCryptContextHandle.cs
- DataControlField.cs
- InvalidPrinterException.cs
- CodeEventReferenceExpression.cs
- DataFormat.cs
- AutoCompleteStringCollection.cs
- ProjectionPlan.cs
- _LocalDataStoreMgr.cs
- GradientBrush.cs
- DeleteIndexBinder.cs
- NotFiniteNumberException.cs
- XmlSerializerVersionAttribute.cs
- BaseDataListDesigner.cs
- WebPartEditorApplyVerb.cs
- ServiceModelConfigurationSectionGroup.cs
- StyleSheet.cs
- RenderData.cs
- PreviewPageInfo.cs
- DateBoldEvent.cs
- StdValidatorsAndConverters.cs
- XPathArrayIterator.cs
- SectionRecord.cs
- TokenBasedSetEnumerator.cs
- _AutoWebProxyScriptHelper.cs
- TitleStyle.cs
- DataBoundLiteralControl.cs
- CodeTypeReferenceExpression.cs
- VideoDrawing.cs
- IPCCacheManager.cs
- IisTraceWebEventProvider.cs
- DetailsView.cs
- HTTPNotFoundHandler.cs
- HttpAsyncResult.cs
- TemplateBuilder.cs
- CodeRegionDirective.cs
- TextElementEnumerator.cs
- DataGridViewColumnHeaderCell.cs
- ExceptionValidationRule.cs
- PrePrepareMethodAttribute.cs
- WindowsListViewItemStartMenu.cs
- ToolStripLabel.cs
- BaseServiceProvider.cs