Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Objects / DataClasses / EdmFunctionAttribute.cs / 1305376 / EdmFunctionAttribute.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Objects.DataClasses { ////// Indicates that the given method is a proxy for an EDM function. /// [AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")] public sealed class EdmFunctionAttribute : Attribute { private readonly string _namespaceName; private readonly string _functionName; ////// Creates a new EdmFunctionAttribute instance. /// /// The namespace name of the EDM function represented by the attributed method /// The function name of the EDM function represented by the attributed method public EdmFunctionAttribute(string namespaceName, string functionName) { _namespaceName = namespaceName; _functionName = functionName; } ////// The namespace name of the EDM function represented by the attributed method /// public string NamespaceName { get { return _namespaceName; } } ////// The function name of the EDM function represented by the attributed method /// public string FunctionName { get { return _functionName; } } } } // 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
- QilPatternFactory.cs
- DataGridCell.cs
- TdsParserHelperClasses.cs
- OperationParameterInfoCollection.cs
- ZipPackage.cs
- InvariantComparer.cs
- PointCollection.cs
- Scene3D.cs
- ToolTipAutomationPeer.cs
- DesignerToolboxInfo.cs
- Literal.cs
- RequestResizeEvent.cs
- ComponentEditorForm.cs
- SearchExpression.cs
- BoolLiteral.cs
- WorkflowMarkupSerializer.cs
- ThreadSafeList.cs
- GridViewColumnCollection.cs
- Base64Encoder.cs
- PathGeometry.cs
- URLIdentityPermission.cs
- WebPartDisplayModeCollection.cs
- XmlNodeList.cs
- Constants.cs
- DataControlLinkButton.cs
- JsonStringDataContract.cs
- Block.cs
- LicenseContext.cs
- ColorAnimation.cs
- LOSFormatter.cs
- ListenerAdapterBase.cs
- _HelperAsyncResults.cs
- TaskCanceledException.cs
- SymmetricKeyWrap.cs
- parserscommon.cs
- RangeValuePattern.cs
- HttpConfigurationContext.cs
- InvalidPrinterException.cs
- FileUtil.cs
- FixedSOMTableCell.cs
- XPathNavigator.cs
- ImpersonateTokenRef.cs
- Asn1IntegerConverter.cs
- mda.cs
- ControlCodeDomSerializer.cs
- SqlBulkCopyColumnMappingCollection.cs
- CharacterString.cs
- TextTreeObjectNode.cs
- PropertyPath.cs
- CryptoStream.cs
- DataGridViewRowPostPaintEventArgs.cs
- AdornerDecorator.cs
- RecognizedWordUnit.cs
- VerticalAlignConverter.cs
- MainMenu.cs
- DesignTimeTemplateParser.cs
- ReachUIElementCollectionSerializerAsync.cs
- SoapSchemaExporter.cs
- SqlBulkCopy.cs
- InstanceDataCollection.cs
- AuthenticationModuleElement.cs
- BaseTreeIterator.cs
- XmlAnyAttributeAttribute.cs
- WebPartConnectionCollection.cs
- PerfService.cs
- SchemaSetCompiler.cs
- ProfileBuildProvider.cs
- QilPatternVisitor.cs
- CreateUserWizardDesigner.cs
- EditorBrowsableAttribute.cs
- CompositionTarget.cs
- TextPattern.cs
- FrameworkEventSource.cs
- EmptyWithCancelationCheckWorkItem.cs
- AssociationSetEnd.cs
- RunWorkerCompletedEventArgs.cs
- SiteMapHierarchicalDataSourceView.cs
- ObjectDataSourceDesigner.cs
- KoreanLunisolarCalendar.cs
- TransformedBitmap.cs
- HebrewNumber.cs
- ConnectionProviderAttribute.cs
- BlobPersonalizationState.cs
- RadioButton.cs
- DetailsViewDeleteEventArgs.cs
- CompositeCollectionView.cs
- PngBitmapDecoder.cs
- XsltOutput.cs
- MaskedTextBox.cs
- InvokeCompletedEventArgs.cs
- InvalidEnumArgumentException.cs
- StickyNoteAnnotations.cs
- MeshGeometry3D.cs
- StylusButtonCollection.cs
- UserControlParser.cs
- XmlSchemaGroup.cs
- DescendentsWalkerBase.cs
- ThicknessAnimationBase.cs
- DataMember.cs
- CacheOutputQuery.cs