Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeArgument.cs / 1305376 / CodeAttributeArgument.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 CodeAttributeArgument { private string name; private CodeExpression value; ////// Represents an argument for use in a custom attribute declaration. /// ////// public CodeAttributeArgument() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeArgument(CodeExpression value) { Value = value; } ////// Initializes a new instance of ///using the specified value. /// /// public CodeAttributeArgument(string name, CodeExpression value) { Name = name; Value = value; } ////// Initializes a new instance of ///using the specified name and /// value. /// /// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } ////// The name of the attribute. /// ////// public CodeExpression Value { get { return value; } set { this.value = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// The argument for the attribute. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParallelTimeline.cs
- BaseDataBoundControlDesigner.cs
- DataColumnSelectionConverter.cs
- EditingCommands.cs
- DesignTimeValidationFeature.cs
- X509Utils.cs
- Int64AnimationBase.cs
- CalendarDateRangeChangingEventArgs.cs
- IntegerFacetDescriptionElement.cs
- FixedSOMPage.cs
- IndexedString.cs
- SQLConvert.cs
- XmlIgnoreAttribute.cs
- Substitution.cs
- WebPartEventArgs.cs
- HtmlInputReset.cs
- SqlDependencyListener.cs
- OletxTransactionFormatter.cs
- TimeoutConverter.cs
- SiteMapPath.cs
- DataGridViewColumn.cs
- figurelengthconverter.cs
- PassportAuthenticationEventArgs.cs
- TextModifier.cs
- ProtectedProviderSettings.cs
- InvokeWebService.cs
- ToolStripMenuItem.cs
- Mappings.cs
- TreeNodeConverter.cs
- DataProtection.cs
- EnumMemberAttribute.cs
- ExpandableObjectConverter.cs
- IsolatedStoragePermission.cs
- InvalidProgramException.cs
- WebHttpBindingElement.cs
- PrimitiveSchema.cs
- Invariant.cs
- ReadOnlyHierarchicalDataSource.cs
- VisualTarget.cs
- InfiniteIntConverter.cs
- SystemNetworkInterface.cs
- QueryOpeningEnumerator.cs
- SmtpLoginAuthenticationModule.cs
- PerformanceCounterCategory.cs
- MasterPage.cs
- CryptoApi.cs
- CharEntityEncoderFallback.cs
- OleDbRowUpdatedEvent.cs
- DrawToolTipEventArgs.cs
- UnitySerializationHolder.cs
- IdleTimeoutMonitor.cs
- LabelAutomationPeer.cs
- MsdtcClusterUtils.cs
- ContextProperty.cs
- GridViewRowCollection.cs
- SoapElementAttribute.cs
- _HeaderInfo.cs
- shaper.cs
- CategoryList.cs
- DynamicRenderer.cs
- ObservableCollectionDefaultValueFactory.cs
- AsymmetricAlgorithm.cs
- PrintingPermissionAttribute.cs
- ArrayTypeMismatchException.cs
- PipelineModuleStepContainer.cs
- PropertyGeneratedEventArgs.cs
- RoleGroup.cs
- WorkflowMarkupSerializationException.cs
- PanelStyle.cs
- TableLayoutPanel.cs
- TemplateControlParser.cs
- PathData.cs
- StrongName.cs
- Function.cs
- ClientApiGenerator.cs
- _StreamFramer.cs
- Win32MouseDevice.cs
- MissingFieldException.cs
- ErasingStroke.cs
- SqlReferenceCollection.cs
- CodeLinePragma.cs
- WebDescriptionAttribute.cs
- X509ImageLogo.cs
- SecurityRequiresReviewAttribute.cs
- WebEncodingValidator.cs
- FolderBrowserDialog.cs
- KeyTime.cs
- QueryCacheEntry.cs
- CodeArgumentReferenceExpression.cs
- ServiceDebugBehavior.cs
- Point4D.cs
- FormViewDeletedEventArgs.cs
- InputProcessorProfilesLoader.cs
- EnumDataContract.cs
- DocumentApplicationJournalEntry.cs
- WebEventCodes.cs
- SchemaSetCompiler.cs
- ThreadTrace.cs
- TypeSystem.cs
- CustomWebEventKey.cs