Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Server / System / Data / Services / Providers / ServiceOperationParameter.cs / 1 / ServiceOperationParameter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a type to represent parameter information for service // operations. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Providers { using System; using System.Diagnostics; ///Use this type to represent a parameter on a service operation. [DebuggerVisualizer("ServiceOperationParameter={Name}")] internal class ServiceOperationParameter { ///Parameter name. private readonly string name; ///Parameter type. private readonly Type type; ////// Initializes a new /// Name of parameter. /// Type of parameter values. public ServiceOperationParameter(string name, Type type) { Debug.Assert(name != null, "name != null"); Debug.Assert(type != null, "type != null"); this.name = name; this.type = type; } ///. /// Name of parameter. public string Name { get { return this.name; } } ///Type of parameter values. public Type Type { get { return this.type; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a type to represent parameter information for service // operations. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Providers { using System; using System.Diagnostics; ///Use this type to represent a parameter on a service operation. [DebuggerVisualizer("ServiceOperationParameter={Name}")] internal class ServiceOperationParameter { ///Parameter name. private readonly string name; ///Parameter type. private readonly Type type; ////// Initializes a new /// Name of parameter. /// Type of parameter values. public ServiceOperationParameter(string name, Type type) { Debug.Assert(name != null, "name != null"); Debug.Assert(type != null, "type != null"); this.name = name; this.type = type; } ///. /// Name of parameter. public string Name { get { return this.name; } } ///Type of parameter values. public Type Type { get { return this.type; } } } } // 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
- LinqDataView.cs
- ExpressionBuilderCollection.cs
- PropertyTab.cs
- SqlUserDefinedTypeAttribute.cs
- StringDictionaryEditor.cs
- ScriptResourceAttribute.cs
- _NegotiateClient.cs
- UrlMapping.cs
- BatchParser.cs
- IResourceProvider.cs
- RtfNavigator.cs
- TextEndOfLine.cs
- DBPropSet.cs
- SpellerError.cs
- ValidationEventArgs.cs
- AspNetHostingPermission.cs
- Package.cs
- BufferedOutputStream.cs
- PrimitiveDataContract.cs
- CharConverter.cs
- Baml2006ReaderFrame.cs
- DataRecord.cs
- NullReferenceException.cs
- DrawItemEvent.cs
- DataTableTypeConverter.cs
- BaseParagraph.cs
- PageThemeParser.cs
- ElasticEase.cs
- RtfToken.cs
- MergeFilterQuery.cs
- TextRangeBase.cs
- bidPrivateBase.cs
- GroupQuery.cs
- DeviceSpecificDialogCachedState.cs
- MULTI_QI.cs
- TickBar.cs
- NavigationService.cs
- ObjectDataSourceStatusEventArgs.cs
- SqlNotificationRequest.cs
- CommandID.cs
- Pair.cs
- ErrorHandler.cs
- ParserHooks.cs
- DataGridTable.cs
- TypedReference.cs
- RegistryConfigurationProvider.cs
- PerformanceCounterCategory.cs
- TemplateKey.cs
- EntityDataSourceDataSelection.cs
- QuaternionAnimation.cs
- FeatureManager.cs
- ScaleTransform3D.cs
- SqlNamer.cs
- SafeIUnknown.cs
- BulletedListEventArgs.cs
- Annotation.cs
- SynchronizingStream.cs
- CodeGenerator.cs
- diagnosticsswitches.cs
- SchemaMapping.cs
- SqlConnectionPoolProviderInfo.cs
- BaseCodePageEncoding.cs
- XNodeNavigator.cs
- BindingBase.cs
- RoutedEvent.cs
- NameTable.cs
- TypeHelpers.cs
- ParentUndoUnit.cs
- RectConverter.cs
- WebReferenceCollection.cs
- ActivityInstanceReference.cs
- FontFamily.cs
- XmlWellformedWriter.cs
- RectConverter.cs
- DataFieldCollectionEditor.cs
- HttpsHostedTransportConfiguration.cs
- RuntimeIdentifierPropertyAttribute.cs
- SapiAttributeParser.cs
- PropertyCollection.cs
- AmbientLight.cs
- GridSplitterAutomationPeer.cs
- xmlglyphRunInfo.cs
- Int32KeyFrameCollection.cs
- SvcMapFile.cs
- ExpressionNormalizer.cs
- OpenCollectionAsyncResult.cs
- Hash.cs
- SqlConnectionFactory.cs
- RowSpanVector.cs
- RuntimeComponentFilter.cs
- DefaultMemberAttribute.cs
- Stopwatch.cs
- ScriptHandlerFactory.cs
- PropertyPushdownHelper.cs
- TextTreeText.cs
- FlowNode.cs
- IDictionary.cs
- SafeNativeMethods.cs
- FixUpCollection.cs
- NamedPipeProcessProtocolHandler.cs