Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeParameterDeclarationExpression.cs / 1 / CodeParameterDeclarationExpression.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 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. /// ///// 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 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
- SafeNativeMethods.cs
- IDictionary.cs
- ControlAdapter.cs
- AffineTransform3D.cs
- SoapCodeExporter.cs
- ImagingCache.cs
- SpeechRecognizer.cs
- ListViewCancelEventArgs.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- EntityDesignerUtils.cs
- ProtocolsConfigurationHandler.cs
- Pts.cs
- DataGridViewCellValidatingEventArgs.cs
- TableCellsCollectionEditor.cs
- RijndaelManaged.cs
- SessionStateItemCollection.cs
- ResourceCategoryAttribute.cs
- coordinatorscratchpad.cs
- _OSSOCK.cs
- StateWorkerRequest.cs
- SmtpLoginAuthenticationModule.cs
- DataControlFieldHeaderCell.cs
- CheckBoxBaseAdapter.cs
- FontFamily.cs
- GPPOINT.cs
- DiagnosticTrace.cs
- ToolStripSystemRenderer.cs
- wmiutil.cs
- StateWorkerRequest.cs
- CodeComment.cs
- DetailsViewInsertedEventArgs.cs
- AttributeUsageAttribute.cs
- RelationshipConverter.cs
- Separator.cs
- IconHelper.cs
- XmlSchemaChoice.cs
- TextSegment.cs
- Geometry.cs
- FilteredAttributeCollection.cs
- XmlnsDictionary.cs
- ValidationPropertyAttribute.cs
- DataGridItemCollection.cs
- ToolStripManager.cs
- MenuItemBindingCollection.cs
- TabItemWrapperAutomationPeer.cs
- ComponentEditorForm.cs
- DataExchangeServiceBinder.cs
- SqlInfoMessageEvent.cs
- TemplateXamlParser.cs
- SdlChannelSink.cs
- ExceptionHandlers.cs
- AssemblyBuilder.cs
- TemplateBindingExpression.cs
- StorageMappingFragment.cs
- TextLine.cs
- LoopExpression.cs
- _LazyAsyncResult.cs
- Helper.cs
- ListViewItemCollectionEditor.cs
- ExtendedTransformFactory.cs
- HtmlInputControl.cs
- PersonalizationStateInfo.cs
- PageHandlerFactory.cs
- ContentDisposition.cs
- QueryConverter.cs
- DataGridViewCellStyle.cs
- PropertyPushdownHelper.cs
- IdentityReference.cs
- compensatingcollection.cs
- LinkedResourceCollection.cs
- CommentAction.cs
- ValidationErrorCollection.cs
- ConnectionOrientedTransportManager.cs
- DataControlButton.cs
- WsatExtendedInformation.cs
- SQLByte.cs
- StringDictionaryCodeDomSerializer.cs
- DataReceivedEventArgs.cs
- AttributeUsageAttribute.cs
- MemberHolder.cs
- RectAnimationClockResource.cs
- ScriptResourceMapping.cs
- PropertyRef.cs
- SchemaTableOptionalColumn.cs
- StagingAreaInputItem.cs
- TripleDES.cs
- WmlCommandAdapter.cs
- elementinformation.cs
- FastPropertyAccessor.cs
- InputBindingCollection.cs
- RoleManagerModule.cs
- ContentFileHelper.cs
- ValidatedControlConverter.cs
- BaseCodePageEncoding.cs
- Bind.cs
- EtwTrackingBehavior.cs
- NativeRightsManagementAPIsStructures.cs
- CursorConverter.cs
- BasePropertyDescriptor.cs
- LineProperties.cs