Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeParameter.cs / 1 / CodeTypeParameter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTypeParameter : CodeObject { private string name; private CodeAttributeDeclarationCollection customAttributes; private CodeTypeReferenceCollection constraints; private bool hasConstructorConstraint; public CodeTypeParameter() { } public CodeTypeParameter(string name) { this.name = name; } public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } public CodeTypeReferenceCollection Constraints { get { if (constraints == null) { constraints = new CodeTypeReferenceCollection(); } return constraints; } } public CodeAttributeDeclarationCollection CustomAttributes { get { if (customAttributes == null) { customAttributes = new CodeAttributeDeclarationCollection(); } return customAttributes; } } public bool HasConstructorConstraint { get { return hasConstructorConstraint; } set { hasConstructorConstraint = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Reflection; using System.Runtime.InteropServices; [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTypeParameter : CodeObject { private string name; private CodeAttributeDeclarationCollection customAttributes; private CodeTypeReferenceCollection constraints; private bool hasConstructorConstraint; public CodeTypeParameter() { } public CodeTypeParameter(string name) { this.name = name; } public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } public CodeTypeReferenceCollection Constraints { get { if (constraints == null) { constraints = new CodeTypeReferenceCollection(); } return constraints; } } public CodeAttributeDeclarationCollection CustomAttributes { get { if (customAttributes == null) { customAttributes = new CodeAttributeDeclarationCollection(); } return customAttributes; } } public bool HasConstructorConstraint { get { return hasConstructorConstraint; } set { hasConstructorConstraint = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComAdminWrapper.cs
- Utils.cs
- RectangleConverter.cs
- CanonicalFontFamilyReference.cs
- SvcMapFileLoader.cs
- CredentialCache.cs
- AutoGeneratedFieldProperties.cs
- ActivityExecutorSurrogate.cs
- EntityContainerRelationshipSet.cs
- DefaultSettingsSection.cs
- HyperLinkDesigner.cs
- BinaryObjectWriter.cs
- MailBnfHelper.cs
- TrackingRecordPreFilter.cs
- BasicExpressionVisitor.cs
- SizeFConverter.cs
- TypeDescriptor.cs
- QueryParameter.cs
- AssemblyCollection.cs
- ZoneIdentityPermission.cs
- WebConfigurationManager.cs
- AccessDataSource.cs
- RenamedEventArgs.cs
- Context.cs
- COM2PictureConverter.cs
- HttpHandlerActionCollection.cs
- DataGridViewRowConverter.cs
- LogicalTreeHelper.cs
- VisualSerializer.cs
- TemplateControlCodeDomTreeGenerator.cs
- documentation.cs
- ResXFileRef.cs
- DataGridPreparingCellForEditEventArgs.cs
- path.cs
- ContainerParagraph.cs
- HttpRequest.cs
- AsymmetricSecurityBindingElement.cs
- HostingEnvironment.cs
- ObjectViewListener.cs
- SystemWebCachingSectionGroup.cs
- AttachedAnnotation.cs
- MasterPageCodeDomTreeGenerator.cs
- PaperSize.cs
- DefaultValueConverter.cs
- Options.cs
- SQLMoney.cs
- StructuralType.cs
- Rect3DValueSerializer.cs
- RowType.cs
- BamlVersionHeader.cs
- StrokeNodeData.cs
- MailMessage.cs
- SmtpNtlmAuthenticationModule.cs
- AssociationType.cs
- SmiRequestExecutor.cs
- X509UI.cs
- TreeViewEvent.cs
- Quaternion.cs
- FormatException.cs
- PathSegment.cs
- FormViewDeleteEventArgs.cs
- Selection.cs
- ParserHooks.cs
- StorageBasedPackageProperties.cs
- InOutArgument.cs
- CollectionBuilder.cs
- DiscreteKeyFrames.cs
- OleDbDataReader.cs
- FlagsAttribute.cs
- EUCJPEncoding.cs
- Random.cs
- FieldNameLookup.cs
- StateItem.cs
- future.cs
- CodeMethodReturnStatement.cs
- SecurityTokenRequirement.cs
- EncodingTable.cs
- KnownTypesHelper.cs
- ToolStripArrowRenderEventArgs.cs
- DataContract.cs
- Evaluator.cs
- TableCell.cs
- Font.cs
- TransactionManager.cs
- FieldNameLookup.cs
- Property.cs
- PtsCache.cs
- ColumnResizeUndoUnit.cs
- RelatedPropertyManager.cs
- BindStream.cs
- SqlExpressionNullability.cs
- TimeEnumHelper.cs
- InvalidFilterCriteriaException.cs
- AnchoredBlock.cs
- AuthenticatedStream.cs
- Trace.cs
- RestHandlerFactory.cs
- SafeFileHandle.cs
- WindowsFormsLinkLabel.cs
- SessionChannels.cs