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
- LogicalExpressionTypeConverter.cs
- GACIdentityPermission.cs
- AssemblyUtil.cs
- FieldValue.cs
- CharEntityEncoderFallback.cs
- AuthorizationSection.cs
- XmlObjectSerializerContext.cs
- SQlBooleanStorage.cs
- TaiwanLunisolarCalendar.cs
- Button.cs
- MainMenu.cs
- ISFTagAndGuidCache.cs
- PlacementWorkspace.cs
- HeaderedContentControl.cs
- FloaterParaClient.cs
- Tuple.cs
- VirtualizingStackPanel.cs
- SafeRegistryKey.cs
- XmlNode.cs
- MasterPageParser.cs
- SpeechRecognitionEngine.cs
- PropertyGroupDescription.cs
- PtsCache.cs
- XmlDataProvider.cs
- StyleCollection.cs
- SqlVersion.cs
- ValuePattern.cs
- RequestCacheManager.cs
- ComplexLine.cs
- InputMethod.cs
- FrameworkContentElement.cs
- ProfileService.cs
- CodeTypeConstructor.cs
- ScrollChrome.cs
- OptimalBreakSession.cs
- CodeArrayCreateExpression.cs
- ObjectItemCollection.cs
- CmsInterop.cs
- AppDomain.cs
- ContentIterators.cs
- EnumConverter.cs
- EntityViewContainer.cs
- FileVersionInfo.cs
- XhtmlBasicCalendarAdapter.cs
- DefaultTextStore.cs
- DropDownButton.cs
- EllipseGeometry.cs
- TrailingSpaceComparer.cs
- ShaderEffect.cs
- RegistrationServices.cs
- NativeMethods.cs
- ContainerVisual.cs
- Geometry3D.cs
- RegularExpressionValidator.cs
- IPAddressCollection.cs
- WeakReferenceEnumerator.cs
- FaultImportOptions.cs
- LinkLabel.cs
- OLEDB_Enum.cs
- namescope.cs
- EventWaitHandleSecurity.cs
- ManifestSignatureInformation.cs
- SimpleRecyclingCache.cs
- WebPartHeaderCloseVerb.cs
- loginstatus.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- DecoderReplacementFallback.cs
- DrawTreeNodeEventArgs.cs
- Ray3DHitTestResult.cs
- CompiledRegexRunner.cs
- ProfileEventArgs.cs
- SchemaDeclBase.cs
- IndexedEnumerable.cs
- SplashScreen.cs
- ListItemsPage.cs
- ReadOnlyHierarchicalDataSourceView.cs
- Rule.cs
- NumberFunctions.cs
- X509ServiceCertificateAuthenticationElement.cs
- DataGridSortCommandEventArgs.cs
- ParameterElement.cs
- Ipv6Element.cs
- ConfigXmlComment.cs
- AlphaSortedEnumConverter.cs
- ControlsConfig.cs
- CheckBox.cs
- ServiceReference.cs
- NonClientArea.cs
- SourceLineInfo.cs
- BCLDebug.cs
- SafeCertificateStore.cs
- AffineTransform3D.cs
- GiveFeedbackEventArgs.cs
- HttpProxyTransportBindingElement.cs
- PopupControlService.cs
- XmlSchemaAttribute.cs
- VisualProxy.cs
- PlanCompilerUtil.cs
- UxThemeWrapper.cs
- PocoPropertyAccessorStrategy.cs