Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- WindowsGraphicsWrapper.cs
- EmptyControlCollection.cs
- ApplicationActivator.cs
- SqlCacheDependencySection.cs
- MonikerProxyAttribute.cs
- DataGridViewCell.cs
- FixedSOMContainer.cs
- ILGenerator.cs
- TogglePatternIdentifiers.cs
- Privilege.cs
- TypeResolver.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- ImageButton.cs
- XmlQuerySequence.cs
- Label.cs
- Itemizer.cs
- TraversalRequest.cs
- TopClause.cs
- MessageRpc.cs
- Keywords.cs
- ToolStripTextBox.cs
- ExceptionHandlerDesigner.cs
- ManagementOperationWatcher.cs
- COM2IDispatchConverter.cs
- CommandBindingCollection.cs
- CopyOfAction.cs
- EditorZoneBase.cs
- MultiSelector.cs
- SqlConnectionHelper.cs
- SigningDialog.cs
- ValidationUtility.cs
- FixedSOMLineCollection.cs
- CellCreator.cs
- VectorConverter.cs
- SecurityImpersonationBehavior.cs
- Attribute.cs
- HandlerFactoryCache.cs
- oledbconnectionstring.cs
- loginstatus.cs
- Label.cs
- DataBindEngine.cs
- CodeSnippetTypeMember.cs
- LocationReference.cs
- DesignerWebPartChrome.cs
- RuntimeEnvironment.cs
- TextTreeTextNode.cs
- ControlType.cs
- tibetanshape.cs
- RoleService.cs
- ComponentEditorPage.cs
- SaveFileDialog.cs
- IgnoreFileBuildProvider.cs
- SqlWebEventProvider.cs
- Int32EqualityComparer.cs
- ExpressionsCollectionEditor.cs
- WinEventTracker.cs
- WebHttpSecurityElement.cs
- SystemIcmpV6Statistics.cs
- SoapObjectWriter.cs
- ProjectedSlot.cs
- InvalidateEvent.cs
- TabRenderer.cs
- XmlHelper.cs
- OdbcException.cs
- Root.cs
- GetPageNumberCompletedEventArgs.cs
- _HeaderInfo.cs
- SelectionPattern.cs
- _OverlappedAsyncResult.cs
- AttributeCollection.cs
- NamespaceEmitter.cs
- RemotingConfiguration.cs
- WsatConfiguration.cs
- CompilerHelpers.cs
- SBCSCodePageEncoding.cs
- WebBrowserContainer.cs
- ActionMessageFilter.cs
- DataSetMappper.cs
- CacheRequest.cs
- UIPermission.cs
- SectionXmlInfo.cs
- XmlWriterTraceListener.cs
- KeyInterop.cs
- SiteOfOriginContainer.cs
- SqlHelper.cs
- Help.cs
- BaseUriHelper.cs
- ProofTokenCryptoHandle.cs
- UrlMappingCollection.cs
- MultiView.cs
- NativeConfigurationLoader.cs
- pingexception.cs
- Timer.cs
- SqlDependencyUtils.cs
- Ray3DHitTestResult.cs
- AssemblyHash.cs
- QuaternionAnimationUsingKeyFrames.cs
- PrintingPermission.cs
- WindowsEditBoxRange.cs
- CategoryEditor.cs