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
- TableCellCollection.cs
- CriticalExceptions.cs
- ProfileEventArgs.cs
- Drawing.cs
- TransformCryptoHandle.cs
- Vertex.cs
- EntitySqlQueryCacheKey.cs
- DataPagerField.cs
- PersonalizationState.cs
- DataStreamFromComStream.cs
- RoleManagerEventArgs.cs
- GZipDecoder.cs
- SmtpNtlmAuthenticationModule.cs
- Model3DGroup.cs
- XmlSchemaValidator.cs
- FormatterServices.cs
- RSAPKCS1KeyExchangeFormatter.cs
- Configuration.cs
- XmlSchemaSimpleTypeList.cs
- DecoderBestFitFallback.cs
- EllipticalNodeOperations.cs
- FileLogRecord.cs
- ReadingWritingEntityEventArgs.cs
- WebBrowser.cs
- Fonts.cs
- XmlSchemaCompilationSettings.cs
- DocumentOrderComparer.cs
- AppDomainProtocolHandler.cs
- PersonalizableTypeEntry.cs
- BinHexEncoder.cs
- DataSvcMapFileSerializer.cs
- EmbeddedMailObjectsCollection.cs
- HwndPanningFeedback.cs
- HandlerWithFactory.cs
- LayoutEngine.cs
- XmlSignificantWhitespace.cs
- PropertyGridView.cs
- Error.cs
- Single.cs
- ErrorFormatterPage.cs
- MetadataSource.cs
- RegexRunnerFactory.cs
- BadImageFormatException.cs
- DateTimeOffsetConverter.cs
- ProtocolElementCollection.cs
- ConnectivityStatus.cs
- RequestCacheManager.cs
- AssemblyInfo.cs
- DataServiceProcessingPipeline.cs
- HyperLink.cs
- GroupLabel.cs
- IDQuery.cs
- StickyNote.cs
- TypeBrowserDialog.cs
- ColumnWidthChangingEvent.cs
- DataGridViewRowsAddedEventArgs.cs
- VideoDrawing.cs
- PostBackTrigger.cs
- ParameterModifier.cs
- mediaeventshelper.cs
- TransactedBatchingBehavior.cs
- SafeRegistryKey.cs
- ValueOfAction.cs
- BamlRecordReader.cs
- LayoutTableCell.cs
- DiscoveryDocumentLinksPattern.cs
- BinaryObjectInfo.cs
- Environment.cs
- QuaternionAnimation.cs
- LayoutDump.cs
- ClientRoleProvider.cs
- ToolStripDesigner.cs
- FileStream.cs
- DataBinding.cs
- ProfileSettingsCollection.cs
- SchemaNames.cs
- ContentElementAutomationPeer.cs
- HtmlInputImage.cs
- SqlExpressionNullability.cs
- Pair.cs
- WorkflowOperationAsyncResult.cs
- DataServiceStreamResponse.cs
- CharEntityEncoderFallback.cs
- Label.cs
- ActivityIdHeader.cs
- RenderingEventArgs.cs
- TextRangeEditLists.cs
- TraceRecord.cs
- RenderOptions.cs
- Image.cs
- XmlSchemaProviderAttribute.cs
- DrawingState.cs
- DataViewSetting.cs
- GroupBox.cs
- CalendarTable.cs
- TableItemStyle.cs
- QilChoice.cs
- DecimalMinMaxAggregationOperator.cs
- TriggerBase.cs
- InheritedPropertyChangedEventArgs.cs