Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodePropertyReferenceExpression.cs / 1305376 / CodePropertyReferenceExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// The name of the property to reference. /// ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// The name of the property to reference. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CheckBoxRenderer.cs
- PointCollection.cs
- DSASignatureDeformatter.cs
- followingquery.cs
- SiteMapNodeCollection.cs
- BitmapEffectGeneralTransform.cs
- XmlNodeReader.cs
- GraphicsPathIterator.cs
- PerformanceCounterManager.cs
- xdrvalidator.cs
- XmlRawWriterWrapper.cs
- ConnectionInterfaceCollection.cs
- PrintController.cs
- Preprocessor.cs
- RemotingConfiguration.cs
- HashMembershipCondition.cs
- FixedHighlight.cs
- LinkedResource.cs
- HtmlLink.cs
- FormsAuthenticationCredentials.cs
- IfAction.cs
- RealProxy.cs
- ExceptionUtil.cs
- SelectionPattern.cs
- ElementAction.cs
- StylusShape.cs
- InputLanguage.cs
- DefaultValueConverter.cs
- UnSafeCharBuffer.cs
- ListViewTableCell.cs
- ItemsControl.cs
- BinHexEncoder.cs
- XmlDataSource.cs
- ListItem.cs
- InputScope.cs
- VerificationAttribute.cs
- Attribute.cs
- Decimal.cs
- XamlSerializerUtil.cs
- DescendantBaseQuery.cs
- GroupBoxAutomationPeer.cs
- ImportStoreException.cs
- DataGridViewComboBoxColumnDesigner.cs
- ColumnMapTranslator.cs
- BuildProviderCollection.cs
- HostingEnvironment.cs
- ContentOnlyMessage.cs
- ManagementInstaller.cs
- TextServicesDisplayAttribute.cs
- GreenMethods.cs
- ConfigurationFileMap.cs
- ControlIdConverter.cs
- PageTheme.cs
- SymbolTable.cs
- JournalEntry.cs
- WSTrustDec2005.cs
- WorkflowDesigner.cs
- SafeViewOfFileHandle.cs
- EncryptedReference.cs
- DirectoryInfo.cs
- GenericRootAutomationPeer.cs
- ObjectDisposedException.cs
- BamlLocalizableResourceKey.cs
- unitconverter.cs
- SqlAliasesReferenced.cs
- TextFormatter.cs
- EntityDataSourceUtil.cs
- DropTarget.cs
- CommandLibraryHelper.cs
- DataPager.cs
- UnsafeNativeMethods.cs
- ToolStripArrowRenderEventArgs.cs
- TextFormatterHost.cs
- CodeIdentifiers.cs
- IsolationInterop.cs
- SchemaElementDecl.cs
- TimelineGroup.cs
- DurationConverter.cs
- WebColorConverter.cs
- DesignerActionPanel.cs
- BasicExpandProvider.cs
- ObjectDataSourceDisposingEventArgs.cs
- CapacityStreamGeometryContext.cs
- DataGridViewSelectedCellCollection.cs
- SatelliteContractVersionAttribute.cs
- XmlSchemaDocumentation.cs
- TakeQueryOptionExpression.cs
- ComEventsHelper.cs
- GeneralTransform3D.cs
- ApplicationServicesHostFactory.cs
- Int16Storage.cs
- MDIClient.cs
- dtdvalidator.cs
- TakeOrSkipWhileQueryOperator.cs
- AsyncResult.cs
- Pens.cs
- XPathMultyIterator.cs
- _HeaderInfo.cs
- WebPartManager.cs
- ParseChildrenAsPropertiesAttribute.cs