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
- Atom10FormatterFactory.cs
- FamilyTypeface.cs
- SafeFindHandle.cs
- DataServiceQueryException.cs
- PasswordDeriveBytes.cs
- ArrayElementGridEntry.cs
- PathParser.cs
- DataControlCommands.cs
- Rijndael.cs
- DataGridViewRowStateChangedEventArgs.cs
- QueuePathDialog.cs
- WriteableBitmap.cs
- SystemFonts.cs
- precedingsibling.cs
- MetadataPropertyAttribute.cs
- ZipIOCentralDirectoryBlock.cs
- ActiveXHelper.cs
- HtmlLink.cs
- ToolStripItemImageRenderEventArgs.cs
- PromptStyle.cs
- ObjectKeyFrameCollection.cs
- HtmlTextArea.cs
- SafeSecurityHandles.cs
- DeploymentExceptionMapper.cs
- DelimitedListTraceListener.cs
- InternalConfigHost.cs
- StatusBar.cs
- Oid.cs
- ReachDocumentSequenceSerializerAsync.cs
- ExpressionBuilder.cs
- GenerateTemporaryTargetAssembly.cs
- PrintSystemException.cs
- TimeManager.cs
- SizeConverter.cs
- PageBuildProvider.cs
- RelationshipType.cs
- ProjectionCamera.cs
- GroupQuery.cs
- QilXmlReader.cs
- DataRelationCollection.cs
- HierarchicalDataBoundControl.cs
- QilName.cs
- Int32RectValueSerializer.cs
- GenericTransactionFlowAttribute.cs
- ConfigurationCollectionAttribute.cs
- LayoutTable.cs
- MergeFilterQuery.cs
- EditorZoneBase.cs
- LineProperties.cs
- InputLanguageSource.cs
- RuleSettings.cs
- StretchValidation.cs
- UIElement.cs
- RouteData.cs
- ServicesExceptionNotHandledEventArgs.cs
- XmlIlVisitor.cs
- DrawingContext.cs
- ZipIOExtraField.cs
- ObjectListFieldsPage.cs
- ContentIterators.cs
- ArglessEventHandlerProxy.cs
- DispatcherObject.cs
- Optimizer.cs
- OleDbMetaDataFactory.cs
- SqlBulkCopyColumnMapping.cs
- ParseChildrenAsPropertiesAttribute.cs
- PrintPageEvent.cs
- TrimSurroundingWhitespaceAttribute.cs
- DateTimeHelper.cs
- ISSmlParser.cs
- QilPatternFactory.cs
- JsonWriterDelegator.cs
- XmlILConstructAnalyzer.cs
- ButtonChrome.cs
- XslTransformFileEditor.cs
- SignatureDescription.cs
- HttpResponseHeader.cs
- TimelineGroup.cs
- SqlException.cs
- GroupLabel.cs
- TransformDescriptor.cs
- FormsIdentity.cs
- MainMenu.cs
- DataGridViewRowPostPaintEventArgs.cs
- TimelineCollection.cs
- ColorBlend.cs
- ProfileProvider.cs
- ClientTarget.cs
- ExceptionHandler.cs
- SchemaComplexType.cs
- ToolStripSeparatorRenderEventArgs.cs
- UIElement3DAutomationPeer.cs
- TypedLocationWrapper.cs
- WorkerRequest.cs
- OdbcEnvironment.cs
- PersonalizationState.cs
- EntityDataSourceReferenceGroup.cs
- SafeWaitHandle.cs
- CharEntityEncoderFallback.cs
- StringUtil.cs