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
- PngBitmapDecoder.cs
- AdjustableArrowCap.cs
- SqlDependencyUtils.cs
- cache.cs
- ResourceKey.cs
- StylusPointProperty.cs
- ImageBrush.cs
- PointCollectionConverter.cs
- SpStreamWrapper.cs
- AllMembershipCondition.cs
- TextServicesLoader.cs
- TraceXPathNavigator.cs
- TryCatchDesigner.xaml.cs
- BinaryObjectInfo.cs
- DocumentOrderComparer.cs
- SoapObjectReader.cs
- DebugView.cs
- MemberAccessException.cs
- SmiSettersStream.cs
- AppSettingsSection.cs
- AdornerLayer.cs
- sqlmetadatafactory.cs
- OutputCacheSettingsSection.cs
- WSDualHttpBindingElement.cs
- WebServiceEnumData.cs
- NonClientArea.cs
- CacheEntry.cs
- DynamicDataResources.Designer.cs
- AnonymousIdentificationModule.cs
- ApplicationCommands.cs
- SudsCommon.cs
- MsdtcClusterUtils.cs
- Preprocessor.cs
- MessageDecoder.cs
- SymLanguageType.cs
- XmlAtomicValue.cs
- SegmentInfo.cs
- SafeBitVector32.cs
- RoutedEventHandlerInfo.cs
- DataServiceCollectionOfT.cs
- StringWriter.cs
- TraceContextEventArgs.cs
- TableItemPattern.cs
- XmlJsonReader.cs
- DataControlButton.cs
- WindowsFormsDesignerOptionService.cs
- WebPageTraceListener.cs
- CommunicationException.cs
- BamlTreeMap.cs
- ConfigDefinitionUpdates.cs
- DragCompletedEventArgs.cs
- FilteredDataSetHelper.cs
- RowToFieldTransformer.cs
- PassportIdentity.cs
- ConstraintStruct.cs
- ResourceType.cs
- StreamedWorkflowDefinitionContext.cs
- AddInToken.cs
- ReflectionTypeLoadException.cs
- SiteMapPath.cs
- InstallerTypeAttribute.cs
- ExpressionTextBoxAutomationPeer.cs
- PolyLineSegment.cs
- MessageQueue.cs
- ExcCanonicalXml.cs
- Vars.cs
- PipelineModuleStepContainer.cs
- DataBindingsDialog.cs
- AuthorizationSection.cs
- ProgressBarRenderer.cs
- ButtonRenderer.cs
- BuildResult.cs
- ImmutableDispatchRuntime.cs
- TextDecoration.cs
- WebPartTransformerAttribute.cs
- ItemMap.cs
- EncoderParameter.cs
- HttpCookiesSection.cs
- HashMembershipCondition.cs
- CommandDevice.cs
- CultureSpecificStringDictionary.cs
- PowerStatus.cs
- ObjectStorage.cs
- FontNamesConverter.cs
- PlanCompiler.cs
- StringDictionaryWithComparer.cs
- RuleConditionDialog.Designer.cs
- ChtmlTextWriter.cs
- ThrowHelper.cs
- WinHttpWebProxyFinder.cs
- InvokeProviderWrapper.cs
- EditingScopeUndoUnit.cs
- BinaryEditor.cs
- CalculatedColumn.cs
- ServiceProviders.cs
- WindowsContainer.cs
- DBConnectionString.cs
- DynamicRendererThreadManager.cs
- ColumnHeader.cs
- ReflectionPermission.cs