Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / FunctionParameter.cs / 1 / FunctionParameter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; using System.Text; namespace System.Data.Metadata.Edm { ////// Class representing a function parameter /// public sealed class FunctionParameter : MetadataItem { internal static Func> DeclaringFunctionLinker = fp => fp._declaringFunction; #region Constructors /// /// The constructor for FunctionParameter taking in a name and a TypeUsage object /// /// The name of this FunctionParameter /// The TypeUsage describing the type of this FunctionParameter /// Mode of the parameter ///Thrown if name or typeUsage arguments are null ///Thrown if name argument is empty string internal FunctionParameter(string name, TypeUsage typeUsage, ParameterMode parameterMode) { EntityUtil.CheckStringArgument(name, "name"); EntityUtil.GenericCheckArgumentNull(typeUsage, "typeUsage"); _name = name; _typeUsage = typeUsage; SetParameterMode(parameterMode); } #endregion #region Fields private readonly TypeUsage _typeUsage; private readonly string _name; private readonly SafeLink_declaringFunction = new SafeLink (); #endregion #region Properties /// /// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.FunctionParameter; } } ////// Gets/Sets the mode of this parameter /// ///Thrown if value passed into setter is null ///Thrown if the FunctionParameter instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.ParameterMode, false)] public ParameterMode Mode { get { return GetParameterMode(); } } ////// Returns the identity of the member /// internal override string Identity { get { return _name; } } ////// Returns the name of the member /// [MetadataProperty(PrimitiveTypeKind.String, false)] public String Name { get { return _name; } } ////// Returns the TypeUsage object containing the type information and facets /// about the type /// [MetadataProperty(BuiltInTypeKind.TypeUsage, false)] public TypeUsage TypeUsage { get { return _typeUsage; } } ////// Returns the declaring function of this parameter /// public EdmFunction DeclaringFunction { get { return _declaringFunction.Value; } } #endregion #region Methods ////// Overriding System.Object.ToString to provide better String representation /// for this type. /// public override string ToString() { return Name; } ////// Sets the member to read only mode. Once this is done, there are no changes /// that can be done to this class /// internal override void SetReadOnly() { if (!IsReadOnly) { base.SetReadOnly(); // TypeUsage is always readonly, no reason to set it } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; using System.Text; namespace System.Data.Metadata.Edm { ////// Class representing a function parameter /// public sealed class FunctionParameter : MetadataItem { internal static Func> DeclaringFunctionLinker = fp => fp._declaringFunction; #region Constructors /// /// The constructor for FunctionParameter taking in a name and a TypeUsage object /// /// The name of this FunctionParameter /// The TypeUsage describing the type of this FunctionParameter /// Mode of the parameter ///Thrown if name or typeUsage arguments are null ///Thrown if name argument is empty string internal FunctionParameter(string name, TypeUsage typeUsage, ParameterMode parameterMode) { EntityUtil.CheckStringArgument(name, "name"); EntityUtil.GenericCheckArgumentNull(typeUsage, "typeUsage"); _name = name; _typeUsage = typeUsage; SetParameterMode(parameterMode); } #endregion #region Fields private readonly TypeUsage _typeUsage; private readonly string _name; private readonly SafeLink_declaringFunction = new SafeLink (); #endregion #region Properties /// /// Returns the kind of the type /// public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.FunctionParameter; } } ////// Gets/Sets the mode of this parameter /// ///Thrown if value passed into setter is null ///Thrown if the FunctionParameter instance is in ReadOnly state [MetadataProperty(BuiltInTypeKind.ParameterMode, false)] public ParameterMode Mode { get { return GetParameterMode(); } } ////// Returns the identity of the member /// internal override string Identity { get { return _name; } } ////// Returns the name of the member /// [MetadataProperty(PrimitiveTypeKind.String, false)] public String Name { get { return _name; } } ////// Returns the TypeUsage object containing the type information and facets /// about the type /// [MetadataProperty(BuiltInTypeKind.TypeUsage, false)] public TypeUsage TypeUsage { get { return _typeUsage; } } ////// Returns the declaring function of this parameter /// public EdmFunction DeclaringFunction { get { return _declaringFunction.Value; } } #endregion #region Methods ////// Overriding System.Object.ToString to provide better String representation /// for this type. /// public override string ToString() { return Name; } ////// Sets the member to read only mode. Once this is done, there are no changes /// that can be done to this class /// internal override void SetReadOnly() { if (!IsReadOnly) { base.SetReadOnly(); // TypeUsage is always readonly, no reason to set it } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataReaderContainer.cs
- Base64WriteStateInfo.cs
- CompositeScriptReference.cs
- TextElementCollectionHelper.cs
- RtfControls.cs
- MetadataProperty.cs
- AlternationConverter.cs
- PointLightBase.cs
- AutomationProperties.cs
- NameObjectCollectionBase.cs
- MapPathBasedVirtualPathProvider.cs
- TrackingProfile.cs
- ConfigXmlComment.cs
- DataObjectPastingEventArgs.cs
- TextEditorDragDrop.cs
- ControlCachePolicy.cs
- GPPOINT.cs
- IndependentAnimationStorage.cs
- GridViewItemAutomationPeer.cs
- NamespaceQuery.cs
- GotoExpression.cs
- CellTreeNodeVisitors.cs
- ListSourceHelper.cs
- IntPtr.cs
- SqlMultiplexer.cs
- XmlNode.cs
- DataGridViewColumnConverter.cs
- TreeViewItem.cs
- ApplicationId.cs
- Vector.cs
- XmlDataSourceDesigner.cs
- TargetPerspective.cs
- RootProfilePropertySettingsCollection.cs
- SelectionRangeConverter.cs
- SrgsElementFactory.cs
- MachineSettingsSection.cs
- ModelEditingScope.cs
- NativeMethods.cs
- BulletChrome.cs
- TreeViewAutomationPeer.cs
- FolderNameEditor.cs
- CodeEventReferenceExpression.cs
- OdbcParameter.cs
- NetworkStream.cs
- Currency.cs
- CompressedStack.cs
- StandardOleMarshalObject.cs
- RequestStatusBarUpdateEventArgs.cs
- DataSpaceManager.cs
- WindowsListViewItem.cs
- OraclePermission.cs
- DropSource.cs
- TimeSpanValidatorAttribute.cs
- Odbc32.cs
- SelfIssuedAuthAsymmetricKey.cs
- ConfigXmlAttribute.cs
- SqlConnectionPoolProviderInfo.cs
- EventDescriptorCollection.cs
- Bits.cs
- XmlFormatExtensionPointAttribute.cs
- CallbackException.cs
- ProviderConnectionPointCollection.cs
- RegexFCD.cs
- KerberosRequestorSecurityToken.cs
- RequestQueryProcessor.cs
- securestring.cs
- ItemCheckedEvent.cs
- WebPartCloseVerb.cs
- JournalNavigationScope.cs
- BindingSource.cs
- HebrewCalendar.cs
- EntityTypeEmitter.cs
- BaseParser.cs
- PlainXmlWriter.cs
- ServiceTimeoutsBehavior.cs
- SerializationIncompleteException.cs
- SelectionEditor.cs
- DataGridSortingEventArgs.cs
- EditorZone.cs
- XDRSchema.cs
- ExpandSegment.cs
- CompareInfo.cs
- InstanceCreationEditor.cs
- WebFaultClientMessageInspector.cs
- WebPartVerbsEventArgs.cs
- LinkedResourceCollection.cs
- GridLength.cs
- HMACSHA512.cs
- ProcessModuleCollection.cs
- ChangeBlockUndoRecord.cs
- SQLRoleProvider.cs
- SmtpNetworkElement.cs
- infer.cs
- CodeExporter.cs
- PreApplicationStartMethodAttribute.cs
- InvariantComparer.cs
- SimpleRecyclingCache.cs
- ECDiffieHellmanCng.cs
- NavigationFailedEventArgs.cs
- CustomAttributeFormatException.cs