Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeParameterDeclarationExpression.cs / 1305376 / CodeParameterDeclarationExpression.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 CodeParameterDeclarationExpression : CodeExpression { private CodeTypeReference type; private string name; private CodeAttributeDeclarationCollection customAttributes = null; private FieldDirection dir = FieldDirection.In; ////// Represents a parameter declaration for method, constructor, or property arguments. /// ////// public CodeParameterDeclarationExpression() { } ////// Initializes a new instance of ///. /// /// public CodeParameterDeclarationExpression(CodeTypeReference type, string name) { Type = type; Name = name; } ////// Initializes a new instance of ///using the specified type and name. /// /// public CodeParameterDeclarationExpression(string type, string name) { Type = new CodeTypeReference(type); Name = name; } ///[To be supplied.] ////// public CodeParameterDeclarationExpression(Type type, string name) { Type = new CodeTypeReference(type); Name = name; } ///[To be supplied.] ////// public CodeAttributeDeclarationCollection CustomAttributes { get { if (customAttributes == null) { customAttributes = new CodeAttributeDeclarationCollection(); } return customAttributes; } set { customAttributes = value; } } ////// Gets or sets the custom attributes for the parameter declaration. /// ////// public FieldDirection Direction { get { return dir; } set { dir = value; } } ////// Gets or sets /// the direction of the field. /// ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } ////// Gets or sets /// the type of the parameter. /// ////// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the name of the parameter. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AccessViolationException.cs
- CodeSnippetTypeMember.cs
- LoginCancelEventArgs.cs
- SuppressedPackageProperties.cs
- UrlAuthFailureHandler.cs
- StubHelpers.cs
- ControlBuilder.cs
- FormConverter.cs
- ContentIterators.cs
- HttpProtocolReflector.cs
- TypeSystem.cs
- VerticalAlignConverter.cs
- EntityCommand.cs
- BitConverter.cs
- EnglishPluralizationService.cs
- WindowShowOrOpenTracker.cs
- RIPEMD160.cs
- EnumDataContract.cs
- AssemblyName.cs
- EncoderFallback.cs
- MetadataCollection.cs
- ListMarkerSourceInfo.cs
- MetadataPropertyCollection.cs
- HttpPostClientProtocol.cs
- IncrementalCompileAnalyzer.cs
- ActiveXContainer.cs
- Int32CollectionConverter.cs
- ObjectSet.cs
- TraceEventCache.cs
- SortedList.cs
- xmlsaver.cs
- NativeMethodsCLR.cs
- TemplateControlCodeDomTreeGenerator.cs
- BigInt.cs
- EnterpriseServicesHelper.cs
- TraceUtility.cs
- RepeatInfo.cs
- PostBackTrigger.cs
- GraphicsPath.cs
- ClientBuildManager.cs
- ConnectionsZone.cs
- MatrixTransform3D.cs
- SmtpNtlmAuthenticationModule.cs
- DbParameterHelper.cs
- XmlEventCache.cs
- Set.cs
- PlatformNotSupportedException.cs
- LeaseManager.cs
- GeneralTransform3DGroup.cs
- XmlSchemas.cs
- PropertyItem.cs
- WmpBitmapEncoder.cs
- PointAnimationClockResource.cs
- RawMouseInputReport.cs
- OwnerDrawPropertyBag.cs
- UnsafeNativeMethods.cs
- HtmlEncodedRawTextWriter.cs
- LoggedException.cs
- RadioButton.cs
- LocalizationComments.cs
- safemediahandle.cs
- List.cs
- SafeSecurityHandles.cs
- UpdateExpressionVisitor.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- SQLByteStorage.cs
- ChainedAsyncResult.cs
- SAPICategories.cs
- LogicalTreeHelper.cs
- Internal.cs
- QueueNameHelper.cs
- XomlCompilerResults.cs
- FormattedTextSymbols.cs
- HealthMonitoringSectionHelper.cs
- XmlSchemaAttribute.cs
- ScrollChrome.cs
- AspCompat.cs
- WindowsClaimSet.cs
- UIntPtr.cs
- Permission.cs
- EntityDataSourceEntitySetNameItem.cs
- COM2ExtendedTypeConverter.cs
- OpenFileDialog.cs
- SHA256Managed.cs
- UriScheme.cs
- WorkflowPersistenceService.cs
- TreePrinter.cs
- DefaultConfirmation.cs
- SqlWriter.cs
- PropertyEntry.cs
- SudsWriter.cs
- SqlErrorCollection.cs
- ListView.cs
- DataPointer.cs
- SerializationStore.cs
- TextRunCacheImp.cs
- LogSwitch.cs
- AvTraceFormat.cs
- FontWeight.cs
- AdapterUtil.cs