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
- TraceSection.cs
- PassportAuthenticationEventArgs.cs
- TaiwanCalendar.cs
- CacheChildrenQuery.cs
- SqlCachedBuffer.cs
- ComplexObject.cs
- HMACSHA1.cs
- __Filters.cs
- ApplicationActivator.cs
- EntryWrittenEventArgs.cs
- ConnectionsZone.cs
- UxThemeWrapper.cs
- NumberEdit.cs
- ValidationError.cs
- VectorValueSerializer.cs
- FamilyTypefaceCollection.cs
- ListViewContainer.cs
- Command.cs
- Attributes.cs
- DaylightTime.cs
- NameHandler.cs
- BindingManagerDataErrorEventArgs.cs
- EventArgs.cs
- Run.cs
- XmlJsonWriter.cs
- MissingMemberException.cs
- MsmqEncryptionAlgorithm.cs
- QualificationDataAttribute.cs
- ConfigXmlComment.cs
- RegexCode.cs
- ExpressionVisitorHelpers.cs
- DataFormats.cs
- ByteRangeDownloader.cs
- SpecialFolderEnumConverter.cs
- ShutDownListener.cs
- SynchronizationContext.cs
- XmlCharacterData.cs
- TreeIterators.cs
- ParameterBuilder.cs
- ExpressionPrefixAttribute.cs
- LinqExpressionNormalizer.cs
- XmlSchemaParticle.cs
- XNodeNavigator.cs
- InputEventArgs.cs
- DataGridViewRowHeaderCell.cs
- Int64Storage.cs
- PathNode.cs
- SingleAnimation.cs
- Model3DGroup.cs
- XmlTypeMapping.cs
- RuleValidation.cs
- Binding.cs
- ListBindableAttribute.cs
- InertiaExpansionBehavior.cs
- PagePropertiesChangingEventArgs.cs
- TextPatternIdentifiers.cs
- HttpModuleAction.cs
- ReadOnlyCollectionBase.cs
- ModelProperty.cs
- CultureSpecificStringDictionary.cs
- CodeMethodInvokeExpression.cs
- DataBoundControlHelper.cs
- DictionaryEntry.cs
- ButtonBaseAdapter.cs
- GridViewDesigner.cs
- XPathItem.cs
- AttributeSetAction.cs
- MissingFieldException.cs
- NonValidatingSecurityTokenAuthenticator.cs
- UnSafeCharBuffer.cs
- StrokeCollection2.cs
- MenuDesigner.cs
- ProgressPage.cs
- DrawingAttributesDefaultValueFactory.cs
- UpDownEvent.cs
- SelectionRange.cs
- Emitter.cs
- RtfControlWordInfo.cs
- ToolboxComponentsCreatedEventArgs.cs
- ScriptingAuthenticationServiceSection.cs
- Region.cs
- Thread.cs
- DisplayNameAttribute.cs
- PropertyEmitter.cs
- TextViewSelectionProcessor.cs
- InheritanceContextHelper.cs
- ThreadPool.cs
- TextTrailingCharacterEllipsis.cs
- NullableDoubleMinMaxAggregationOperator.cs
- IntSecurity.cs
- PrintPageEvent.cs
- __Filters.cs
- CompositeScriptReference.cs
- IProvider.cs
- Int64Converter.cs
- SqlMethodTransformer.cs
- IntranetCredentialPolicy.cs
- Adorner.cs
- ArithmeticException.cs
- HttpResponseHeader.cs