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
- MatchingStyle.cs
- Random.cs
- newinstructionaction.cs
- TypeGeneratedEventArgs.cs
- MemberInfoSerializationHolder.cs
- MouseActionConverter.cs
- LinkButton.cs
- KeyGestureConverter.cs
- SerializableAttribute.cs
- RegistryKey.cs
- CancelRequestedRecord.cs
- PropertiesTab.cs
- Separator.cs
- SiblingIterators.cs
- XmlSchemaAppInfo.cs
- RegisteredExpandoAttribute.cs
- BinaryMethodMessage.cs
- AutomationAttributeInfo.cs
- ITreeGenerator.cs
- XmlAnyElementAttribute.cs
- SerializationHelper.cs
- SHA384.cs
- RayHitTestParameters.cs
- XsdBuilder.cs
- FontStyleConverter.cs
- HttpProcessUtility.cs
- RenderData.cs
- SizeAnimation.cs
- PipelineModuleStepContainer.cs
- FullTextState.cs
- Bold.cs
- ServiceContractViewControl.cs
- ApplicationContext.cs
- ContentType.cs
- BitArray.cs
- WebPartConnectionsCancelVerb.cs
- QueryRewriter.cs
- RegionIterator.cs
- EntityClassGenerator.cs
- DynamicMethod.cs
- FixedFlowMap.cs
- StorageMappingFragment.cs
- DataGridItem.cs
- XPathNode.cs
- GroupItemAutomationPeer.cs
- Size.cs
- HelpEvent.cs
- ChangeBlockUndoRecord.cs
- SendKeys.cs
- wgx_exports.cs
- AQNBuilder.cs
- DataGridItem.cs
- processwaithandle.cs
- Html32TextWriter.cs
- HttpSessionStateWrapper.cs
- SmtpNetworkElement.cs
- StrokeSerializer.cs
- HashHelper.cs
- CompilationSection.cs
- RequestCachePolicy.cs
- TypeForwardedFromAttribute.cs
- SymmetricKeyWrap.cs
- SqlDataSourceSelectingEventArgs.cs
- Int32CollectionConverter.cs
- MsmqHostedTransportConfiguration.cs
- GlobalAllocSafeHandle.cs
- SecurityContext.cs
- COM2Properties.cs
- _SingleItemRequestCache.cs
- Internal.cs
- ContextMenuStrip.cs
- StringUtil.cs
- LoginAutoFormat.cs
- QuadTree.cs
- ExpandableObjectConverter.cs
- ReadOnlyObservableCollection.cs
- MsmqHostedTransportManager.cs
- TableLayoutColumnStyleCollection.cs
- XmlNavigatorFilter.cs
- WebBrowserNavigatedEventHandler.cs
- TextParaClient.cs
- FormsAuthenticationConfiguration.cs
- RenderingBiasValidation.cs
- MatrixIndependentAnimationStorage.cs
- DataView.cs
- Window.cs
- TdsParserStaticMethods.cs
- SimpleHandlerBuildProvider.cs
- LogicalTreeHelper.cs
- ItemCheckedEvent.cs
- ListBoxItem.cs
- MarkupCompilePass1.cs
- ContentFileHelper.cs
- KnownTypes.cs
- XmlCustomFormatter.cs
- TCPListener.cs
- recordstatescratchpad.cs
- Model3D.cs
- Match.cs
- HighlightComponent.cs