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
- X509ChainElement.cs
- Separator.cs
- objectresult_tresulttype.cs
- HitTestDrawingContextWalker.cs
- OleDbSchemaGuid.cs
- FormViewInsertEventArgs.cs
- RuntimeCompatibilityAttribute.cs
- XmlTypeAttribute.cs
- TemplateParser.cs
- DefinitionUpdate.cs
- Group.cs
- SmtpSection.cs
- MediaEntryAttribute.cs
- FontEmbeddingManager.cs
- MetaType.cs
- StreamGeometry.cs
- ContentHostHelper.cs
- ReadOnlyDataSourceView.cs
- Processor.cs
- XmlParserContext.cs
- FolderBrowserDialog.cs
- TextTreeExtractElementUndoUnit.cs
- ListViewDesigner.cs
- EventWaitHandleSecurity.cs
- FlowLayoutPanel.cs
- CodeMemberField.cs
- ApplicationHost.cs
- FontStretchConverter.cs
- GenericWebPart.cs
- ServiceAuthorizationBehavior.cs
- MD5CryptoServiceProvider.cs
- PaperSource.cs
- RuntimeCompatibilityAttribute.cs
- Grid.cs
- VisualStyleElement.cs
- SerialPort.cs
- XmlDownloadManager.cs
- DeliveryRequirementsAttribute.cs
- Membership.cs
- DbReferenceCollection.cs
- Stack.cs
- UseManagedPresentationElement.cs
- SocketElement.cs
- HttpCachePolicyElement.cs
- CalendarDateRange.cs
- XPathAxisIterator.cs
- MatrixCamera.cs
- WSHttpSecurity.cs
- TableProvider.cs
- GroupBoxAutomationPeer.cs
- Validator.cs
- SelectionProviderWrapper.cs
- _HTTPDateParse.cs
- CacheDict.cs
- ScrollBarAutomationPeer.cs
- RegexBoyerMoore.cs
- BindingList.cs
- BinaryObjectInfo.cs
- FindSimilarActivitiesVerb.cs
- BaseTemplateParser.cs
- HttpWebRequest.cs
- DBSqlParser.cs
- DataServiceException.cs
- XmlDocumentType.cs
- WindowPatternIdentifiers.cs
- SiteMap.cs
- XmlMemberMapping.cs
- PerformanceCounterPermissionEntry.cs
- UpdateEventArgs.cs
- HierarchicalDataBoundControlAdapter.cs
- UICuesEvent.cs
- SplashScreenNativeMethods.cs
- MutableAssemblyCacheEntry.cs
- ReadOnlyDictionary.cs
- ParameterInfo.cs
- SqlResolver.cs
- DataListItem.cs
- PersonalizationProvider.cs
- XamlDebuggerXmlReader.cs
- FileNotFoundException.cs
- FileEnumerator.cs
- DataFieldEditor.cs
- LessThanOrEqual.cs
- DataTemplateSelector.cs
- ParameterDataSourceExpression.cs
- ReachDocumentReferenceSerializerAsync.cs
- SqlCommand.cs
- DataGridViewCellCancelEventArgs.cs
- HttpUnhandledOperationInvoker.cs
- XmlSchemaDatatype.cs
- CriticalFinalizerObject.cs
- HMACSHA512.cs
- OutputCacheModule.cs
- SqlCharStream.cs
- TransformConverter.cs
- ApplicationInfo.cs
- ExpressionEditorAttribute.cs
- UrlMappingsModule.cs
- SimpleTypesSurrogate.cs
- ProvidersHelper.cs