Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeMemberProperty.cs / 1 / CodeMemberProperty.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 CodeMemberProperty : CodeTypeMember { private CodeTypeReference type; private CodeParameterDeclarationExpressionCollection parameters = new CodeParameterDeclarationExpressionCollection(); private bool hasGet; private bool hasSet; private CodeStatementCollection getStatements = new CodeStatementCollection(); private CodeStatementCollection setStatements = new CodeStatementCollection(); private CodeTypeReference privateImplements = null; private CodeTypeReferenceCollection implementationTypes = null; ////// Represents a class property. /// ////// public CodeTypeReference PrivateImplementationType { get { return privateImplements; } set { privateImplements = value; } } ///[To be supplied.] ////// public CodeTypeReferenceCollection ImplementationTypes { get { if (implementationTypes == null) { implementationTypes = new CodeTypeReferenceCollection(); } return implementationTypes; } } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } ///Gets or sets the data type of the property. ////// public bool HasGet { get { return hasGet || getStatements.Count > 0; } set { hasGet = value; if (!value) { getStatements.Clear(); } } } ////// Gets a value /// indicating whether the property has a get method accessor. /// ////// public bool HasSet { get { return hasSet || setStatements.Count > 0; } set { hasSet = value; if (!value) { setStatements.Clear(); } } } ////// Gets a value /// indicating whether the property has a set method accessor. /// ////// public CodeStatementCollection GetStatements { get { return getStatements; } } ////// Gets or sets the collection of get statements for the /// property. /// ////// public CodeStatementCollection SetStatements { get { return setStatements; } } ////// Gets or sets the collection of get statements for the property. /// ////// public CodeParameterDeclarationExpressionCollection Parameters { get { return parameters; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the collection of declaration expressions /// for /// the property. /// ///// 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 CodeMemberProperty : CodeTypeMember { private CodeTypeReference type; private CodeParameterDeclarationExpressionCollection parameters = new CodeParameterDeclarationExpressionCollection(); private bool hasGet; private bool hasSet; private CodeStatementCollection getStatements = new CodeStatementCollection(); private CodeStatementCollection setStatements = new CodeStatementCollection(); private CodeTypeReference privateImplements = null; private CodeTypeReferenceCollection implementationTypes = null; ////// Represents a class property. /// ////// public CodeTypeReference PrivateImplementationType { get { return privateImplements; } set { privateImplements = value; } } ///[To be supplied.] ////// public CodeTypeReferenceCollection ImplementationTypes { get { if (implementationTypes == null) { implementationTypes = new CodeTypeReferenceCollection(); } return implementationTypes; } } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } ///Gets or sets the data type of the property. ////// public bool HasGet { get { return hasGet || getStatements.Count > 0; } set { hasGet = value; if (!value) { getStatements.Clear(); } } } ////// Gets a value /// indicating whether the property has a get method accessor. /// ////// public bool HasSet { get { return hasSet || setStatements.Count > 0; } set { hasSet = value; if (!value) { setStatements.Clear(); } } } ////// Gets a value /// indicating whether the property has a set method accessor. /// ////// public CodeStatementCollection GetStatements { get { return getStatements; } } ////// Gets or sets the collection of get statements for the /// property. /// ////// public CodeStatementCollection SetStatements { get { return setStatements; } } ////// Gets or sets the collection of get statements for the property. /// ////// public CodeParameterDeclarationExpressionCollection Parameters { get { return parameters; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the collection of declaration expressions /// for /// the property. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VersionPair.cs
- LayoutEditorPart.cs
- MonitorWrapper.cs
- NoResizeHandleGlyph.cs
- SqlDataSourceDesigner.cs
- CopyAttributesAction.cs
- NumericExpr.cs
- DataBoundControlDesigner.cs
- ManagedIStream.cs
- Control.cs
- Menu.cs
- Dictionary.cs
- PtsCache.cs
- ReadOnlyHierarchicalDataSource.cs
- ParameterModifier.cs
- WebServiceErrorEvent.cs
- X509Utils.cs
- RemoteWebConfigurationHostStream.cs
- ThreadPool.cs
- XmlSchemaComplexContentRestriction.cs
- BrowserCapabilitiesFactoryBase.cs
- _ScatterGatherBuffers.cs
- AffineTransform3D.cs
- SiteMapNodeItem.cs
- JoinCqlBlock.cs
- Rule.cs
- QuotaExceededException.cs
- TextLineResult.cs
- XComponentModel.cs
- WebDescriptionAttribute.cs
- TypeDelegator.cs
- MobileControlDesigner.cs
- CustomSignedXml.cs
- PerformanceCounterPermissionEntryCollection.cs
- LongTypeConverter.cs
- BuildProvider.cs
- MulticastNotSupportedException.cs
- XamlSerializer.cs
- ResumeStoryboard.cs
- UnsafeNativeMethodsMilCoreApi.cs
- TextDecorationCollectionConverter.cs
- Avt.cs
- ControlIdConverter.cs
- SRef.cs
- MbpInfo.cs
- SqlDataSourceStatusEventArgs.cs
- ButtonColumn.cs
- ProfileEventArgs.cs
- storepermissionattribute.cs
- IsolatedStorage.cs
- ProxyWebPartConnectionCollection.cs
- LicenseException.cs
- DbParameterCollection.cs
- BroadcastEventHelper.cs
- ResourceAttributes.cs
- TabItemWrapperAutomationPeer.cs
- NavigationHelper.cs
- RoleManagerModule.cs
- OleServicesContext.cs
- HijriCalendar.cs
- DBPropSet.cs
- MetaTableHelper.cs
- DrawingAttributes.cs
- RichTextBoxAutomationPeer.cs
- IDispatchConstantAttribute.cs
- EventRouteFactory.cs
- RsaSecurityKey.cs
- ToolBar.cs
- DefaultDialogButtons.cs
- ArgIterator.cs
- DBSchemaTable.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- NotifyIcon.cs
- StateMachineHistory.cs
- OleDbDataAdapter.cs
- EntityKeyElement.cs
- XmlDocument.cs
- SqlClientWrapperSmiStreamChars.cs
- FontWeights.cs
- BreakSafeBase.cs
- NullableLongMinMaxAggregationOperator.cs
- SafeRightsManagementSessionHandle.cs
- ResourcePermissionBaseEntry.cs
- NativeCompoundFileAPIs.cs
- JsonFormatWriterGenerator.cs
- Solver.cs
- ActivityPropertyReference.cs
- SelectionItemPattern.cs
- GifBitmapDecoder.cs
- DataGridViewBindingCompleteEventArgs.cs
- ObservableDictionary.cs
- XmlSchemaSimpleContentExtension.cs
- Error.cs
- HtmlTextArea.cs
- Update.cs
- CodeBinaryOperatorExpression.cs
- httpapplicationstate.cs
- ByteAnimationUsingKeyFrames.cs
- Currency.cs
- EntityDesignerDataSourceView.cs