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
- CustomDictionarySources.cs
- PropertyStore.cs
- NativeActivityFaultContext.cs
- HttpCapabilitiesSectionHandler.cs
- AttributeCallbackBuilder.cs
- ResXResourceReader.cs
- Accessible.cs
- LinkConverter.cs
- Int16Animation.cs
- SqlStream.cs
- NewItemsContextMenuStrip.cs
- ChangesetResponse.cs
- DataBinder.cs
- ParentUndoUnit.cs
- Transform3D.cs
- FileSystemEventArgs.cs
- _ListenerAsyncResult.cs
- XmlValidatingReaderImpl.cs
- BindableAttribute.cs
- XmlFormatReaderGenerator.cs
- AnonymousIdentificationSection.cs
- DrawingVisualDrawingContext.cs
- FactoryMaker.cs
- QuaternionRotation3D.cs
- ProcessHostMapPath.cs
- XsdBuilder.cs
- KeySplineConverter.cs
- DesignBindingPicker.cs
- ViewStateModeByIdAttribute.cs
- TextParagraphProperties.cs
- SHA384Managed.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- DependencyPropertyKey.cs
- InputDevice.cs
- GridViewColumnHeaderAutomationPeer.cs
- DbProviderFactoriesConfigurationHandler.cs
- ClientRuntimeConfig.cs
- DataGridViewCellLinkedList.cs
- PrimitiveOperationFormatter.cs
- WeakHashtable.cs
- InputBuffer.cs
- RequestQueryParser.cs
- SerializerWriterEventHandlers.cs
- AssemblyCollection.cs
- URLString.cs
- NotFiniteNumberException.cs
- UnsafeNativeMethods.cs
- Win32.cs
- EventQueueState.cs
- ImageAutomationPeer.cs
- DSASignatureDeformatter.cs
- FixedBufferAttribute.cs
- SiteMap.cs
- WorkflowFileItem.cs
- DrawingImage.cs
- WrappedIUnknown.cs
- DataObjectPastingEventArgs.cs
- Psha1DerivedKeyGeneratorHelper.cs
- CatalogPart.cs
- KeyboardDevice.cs
- PageBreakRecord.cs
- XmlQueryType.cs
- SqlFormatter.cs
- DataKeyArray.cs
- ThaiBuddhistCalendar.cs
- X509ChainPolicy.cs
- PassportAuthenticationModule.cs
- EmptyEnumerator.cs
- TripleDES.cs
- MultilineStringEditor.cs
- GlobalizationAssembly.cs
- CoTaskMemHandle.cs
- ConfigXmlComment.cs
- templategroup.cs
- UrlAuthorizationModule.cs
- LinkArea.cs
- PackageStore.cs
- ToolBar.cs
- BindUriHelper.cs
- ClientData.cs
- WebPartCatalogAddVerb.cs
- MultiAsyncResult.cs
- DataGridRowAutomationPeer.cs
- DefaultSerializationProviderAttribute.cs
- DataGridViewElement.cs
- unsafeIndexingFilterStream.cs
- RichTextBox.cs
- ControlPaint.cs
- Missing.cs
- OracleEncoding.cs
- ResourceIDHelper.cs
- HierarchicalDataSourceControl.cs
- ProfileSection.cs
- COM2ExtendedTypeConverter.cs
- TextSearch.cs
- MarkupProperty.cs
- SkewTransform.cs
- StateItem.cs
- RestHandler.cs
- SimpleBitVector32.cs