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
- ExtensibleSyndicationObject.cs
- SystemIPGlobalStatistics.cs
- CalendarAutoFormatDialog.cs
- Bits.cs
- BrowserCapabilitiesCompiler.cs
- RegexWorker.cs
- TagElement.cs
- Normalization.cs
- CultureInfo.cs
- TextTreeInsertElementUndoUnit.cs
- NumericExpr.cs
- ConsoleCancelEventArgs.cs
- XmlSerializationGeneratedCode.cs
- ControlPaint.cs
- ExceptionUtil.cs
- CSharpCodeProvider.cs
- ListSourceHelper.cs
- DesigntimeLicenseContextSerializer.cs
- bidPrivateBase.cs
- AutomationPropertyInfo.cs
- XmlArrayItemAttributes.cs
- Rectangle.cs
- BroadcastEventHelper.cs
- DashStyle.cs
- ListViewTableCell.cs
- RichTextBoxAutomationPeer.cs
- NoPersistHandle.cs
- ChannelManager.cs
- ArcSegment.cs
- Mutex.cs
- ScriptResourceInfo.cs
- DataGridViewColumnStateChangedEventArgs.cs
- ColorAnimation.cs
- ObjRef.cs
- InvalidateEvent.cs
- VariableAction.cs
- XmlValidatingReader.cs
- LogEntry.cs
- TTSEngineProxy.cs
- MappingModelBuildProvider.cs
- MimeParameterWriter.cs
- AutoGeneratedFieldProperties.cs
- Console.cs
- Model3DCollection.cs
- DoubleLinkListEnumerator.cs
- BitmapEffectState.cs
- ScriptManager.cs
- ReadOnlyPropertyMetadata.cs
- TCPClient.cs
- HyperlinkAutomationPeer.cs
- MultiViewDesigner.cs
- DataGridViewCellValueEventArgs.cs
- IdentifierService.cs
- ImpersonationContext.cs
- SeekStoryboard.cs
- Empty.cs
- EntityDataSourceViewSchema.cs
- Queue.cs
- FormViewInsertEventArgs.cs
- PageAction.cs
- ObjectSelectorEditor.cs
- ColorMap.cs
- WebConvert.cs
- PropagatorResult.cs
- ControlSerializer.cs
- XmlSchemaImporter.cs
- InputBinder.cs
- BindingContext.cs
- Image.cs
- ArgumentFixer.cs
- SynchronizationLockException.cs
- MimeFormatter.cs
- WhitespaceSignificantCollectionAttribute.cs
- ChtmlTextWriter.cs
- ObjectReferenceStack.cs
- TrackingLocation.cs
- TryExpression.cs
- TokenDescriptor.cs
- PageThemeParser.cs
- EventMappingSettingsCollection.cs
- PenContexts.cs
- ScrollData.cs
- MethodBody.cs
- RegexBoyerMoore.cs
- TreeNodeBindingDepthConverter.cs
- FormatStringEditor.cs
- StringComparer.cs
- DisplayMemberTemplateSelector.cs
- hwndwrapper.cs
- CodeComment.cs
- ClrPerspective.cs
- VarRemapper.cs
- SetterBaseCollection.cs
- AppDomainProtocolHandler.cs
- SoapSchemaImporter.cs
- PenThreadWorker.cs
- IssuanceLicense.cs
- DesignDataSource.cs
- EncryptedXml.cs
- TemplateManager.cs