Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }/// Gets or sets /// the name of the parameter. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HostVisual.cs
- Normalization.cs
- SoapUnknownHeader.cs
- MsdtcClusterUtils.cs
- SchemaElement.cs
- ObjectResult.cs
- Point3D.cs
- LoginUtil.cs
- MULTI_QI.cs
- StaticFileHandler.cs
- WCFModelStrings.Designer.cs
- SQLDecimalStorage.cs
- ExpressionBuilderContext.cs
- AnimatedTypeHelpers.cs
- ColorConvertedBitmapExtension.cs
- ProgressPage.cs
- BindingMAnagerBase.cs
- PackageController.cs
- EntityDataSourceWrapperCollection.cs
- DocumentPage.cs
- TraversalRequest.cs
- _AcceptOverlappedAsyncResult.cs
- SQLDecimal.cs
- DictionaryItemsCollection.cs
- JsonEnumDataContract.cs
- FixedElement.cs
- InfiniteIntConverter.cs
- SecurityCriticalDataForSet.cs
- TypographyProperties.cs
- SqlDuplicator.cs
- ProcessRequestArgs.cs
- Token.cs
- ImageAutomationPeer.cs
- RbTree.cs
- securestring.cs
- DbParameterHelper.cs
- ScrollViewer.cs
- BamlReader.cs
- TaskForm.cs
- ProjectedSlot.cs
- ViewEvent.cs
- FillRuleValidation.cs
- WeakReference.cs
- SendActivityValidator.cs
- XmlBaseReader.cs
- DocumentReferenceCollection.cs
- CoTaskMemUnicodeSafeHandle.cs
- WebBrowser.cs
- InputProviderSite.cs
- XmlStreamStore.cs
- NaturalLanguageHyphenator.cs
- ByeOperationAsyncResult.cs
- SymLanguageVendor.cs
- ApplicationHost.cs
- DataColumnMappingCollection.cs
- LineMetrics.cs
- SecureStringHasher.cs
- DBConnection.cs
- EnvelopedSignatureTransform.cs
- LabelEditEvent.cs
- ChildChangedEventArgs.cs
- ZipIOExtraFieldZip64Element.cs
- ToolboxItemAttribute.cs
- NestPullup.cs
- DbException.cs
- SignalGate.cs
- InstanceOwnerQueryResult.cs
- ActivityCompletionCallbackWrapper.cs
- ObjectQueryExecutionPlan.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- _NestedMultipleAsyncResult.cs
- PersistenceTypeAttribute.cs
- sqlnorm.cs
- UIAgentCrashedException.cs
- DefaultBinder.cs
- ObjectStateFormatter.cs
- KeyboardDevice.cs
- MetadataItemSerializer.cs
- Query.cs
- TextDpi.cs
- DataGridViewBand.cs
- FullTextState.cs
- LocatorPart.cs
- TimeoutException.cs
- RegexParser.cs
- Popup.cs
- LocalizationParserHooks.cs
- DoubleUtil.cs
- TextBlock.cs
- WebContentFormatHelper.cs
- InputLanguage.cs
- XhtmlBasicCommandAdapter.cs
- SelectionWordBreaker.cs
- ControlIdConverter.cs
- StandardCommands.cs
- AsyncCompletedEventArgs.cs
- SignerInfo.cs
- Label.cs
- DES.cs
- GridViewCellAutomationPeer.cs