Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// The name of the property to reference. /// ///// 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; } } } } // 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
- RemotingException.cs
- XamlWrapperReaders.cs
- LingerOption.cs
- AccessedThroughPropertyAttribute.cs
- WebDescriptionAttribute.cs
- HMACSHA384.cs
- DataControlFieldTypeEditor.cs
- GZipDecoder.cs
- AssemblyInfo.cs
- SystemWebCachingSectionGroup.cs
- JumpItem.cs
- BaseTreeIterator.cs
- ScriptMethodAttribute.cs
- XPathNodeInfoAtom.cs
- SerializationObjectManager.cs
- basecomparevalidator.cs
- ColorContext.cs
- BezierSegment.cs
- MachineKeyConverter.cs
- ExceptionRoutedEventArgs.cs
- COAUTHINFO.cs
- printdlgexmarshaler.cs
- MenuBase.cs
- FlowDocumentView.cs
- SkinBuilder.cs
- MethodCallExpression.cs
- Point4DConverter.cs
- ColorTranslator.cs
- FacetValueContainer.cs
- AsyncCompletedEventArgs.cs
- SequenceFullException.cs
- ByteStream.cs
- LoginCancelEventArgs.cs
- TextTreeNode.cs
- Assert.cs
- TextEndOfSegment.cs
- ValueType.cs
- ListViewItemMouseHoverEvent.cs
- DocumentPage.cs
- SelectionProviderWrapper.cs
- AutomationFocusChangedEventArgs.cs
- SqlConnectionHelper.cs
- DesignBinding.cs
- ServiceHostingEnvironment.cs
- EventWaitHandle.cs
- ProtocolsConfiguration.cs
- SmiSettersStream.cs
- StructuralType.cs
- SafeEventLogWriteHandle.cs
- rsa.cs
- TextProperties.cs
- BinaryNode.cs
- ToolStripDropDownMenu.cs
- TcpClientCredentialType.cs
- BindableAttribute.cs
- MediaContextNotificationWindow.cs
- ClientBase.cs
- StrongName.cs
- ButtonFieldBase.cs
- PageCache.cs
- ISessionStateStore.cs
- ConnectionPoint.cs
- ComponentConverter.cs
- ListMarkerSourceInfo.cs
- ImportContext.cs
- MsmqInputChannelListener.cs
- CodeAssignStatement.cs
- HostingEnvironmentException.cs
- DataGridViewCellStyle.cs
- DispatcherFrame.cs
- SemanticValue.cs
- XamlReaderHelper.cs
- UrlPath.cs
- NetworkInterface.cs
- LiteralText.cs
- sqlpipe.cs
- AbandonedMutexException.cs
- SafeBitVector32.cs
- OpenFileDialog.cs
- RequestTimeoutManager.cs
- ImageMap.cs
- FormsIdentity.cs
- ImplicitInputBrush.cs
- CodeLinePragma.cs
- DeclarativeCatalogPartDesigner.cs
- ProgramNode.cs
- SafeProcessHandle.cs
- WebBrowsableAttribute.cs
- ConstructorBuilder.cs
- EventMappingSettingsCollection.cs
- ZipIOFileItemStream.cs
- Win32SafeHandles.cs
- PersianCalendar.cs
- CacheEntry.cs
- DataGridItem.cs
- PenCursorManager.cs
- IOThreadTimer.cs
- TextInfo.cs
- ActivityCodeDomSerializer.cs
- BulletChrome.cs