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
- OrderedDictionary.cs
- BindingRestrictions.cs
- PageAdapter.cs
- EntityContainer.cs
- TargetException.cs
- InputLanguageCollection.cs
- PropertyGeneratedEventArgs.cs
- TypeBuilder.cs
- ZoneLinkButton.cs
- ListViewTableCell.cs
- AppDomainProtocolHandler.cs
- RoleGroup.cs
- CellPartitioner.cs
- SqlProcedureAttribute.cs
- PropertyRecord.cs
- PersonalizablePropertyEntry.cs
- HyperlinkAutomationPeer.cs
- PrivilegedConfigurationManager.cs
- CommonDialog.cs
- ServiceDescriptionSerializer.cs
- PropertyCollection.cs
- BufferedConnection.cs
- ListView.cs
- HandlerFactoryCache.cs
- EllipseGeometry.cs
- WeakHashtable.cs
- ToolstripProfessionalRenderer.cs
- StringComparer.cs
- XmlReflectionImporter.cs
- WebPartCloseVerb.cs
- MarkupExtensionReturnTypeAttribute.cs
- CodeTypeMemberCollection.cs
- Action.cs
- MultilineStringConverter.cs
- XmlDictionaryReaderQuotas.cs
- DynamicQueryableWrapper.cs
- FixedTextContainer.cs
- InputScopeManager.cs
- NamedServiceModelExtensionCollectionElement.cs
- MouseBinding.cs
- ServiceHostingEnvironmentSection.cs
- BmpBitmapDecoder.cs
- Point.cs
- HandleRef.cs
- TextClipboardData.cs
- DispatchWrapper.cs
- DataGridRow.cs
- BamlStream.cs
- RichTextBox.cs
- SqlCacheDependency.cs
- RIPEMD160Managed.cs
- UnsafeNativeMethods.cs
- SafeRightsManagementSessionHandle.cs
- Executor.cs
- VisualStyleTypesAndProperties.cs
- OperatingSystem.cs
- SQLInt32.cs
- GlobalId.cs
- CompilerWrapper.cs
- SqlNodeAnnotation.cs
- EnumConverter.cs
- EncoderParameter.cs
- VirtualPathData.cs
- NullableConverter.cs
- ButtonFlatAdapter.cs
- MethodBuilder.cs
- BitmapCache.cs
- IgnoreSectionHandler.cs
- DataContractJsonSerializer.cs
- ProcessHost.cs
- BlurEffect.cs
- TemplateControl.cs
- DoubleConverter.cs
- PTProvider.cs
- ITreeGenerator.cs
- XPathNodeInfoAtom.cs
- XmlSignificantWhitespace.cs
- RuntimeConfig.cs
- StagingAreaInputItem.cs
- WebRequestModulesSection.cs
- XmlEnumAttribute.cs
- TextBoxAutomationPeer.cs
- TransactionContextValidator.cs
- DependencyPropertyValueSerializer.cs
- PeerNearMe.cs
- EdmFunctions.cs
- parserscommon.cs
- ResolveResponse.cs
- AsymmetricKeyExchangeDeformatter.cs
- SqlColumnizer.cs
- DataGridViewTopRowAccessibleObject.cs
- UnmanagedHandle.cs
- CorrelationActionMessageFilter.cs
- DocumentPageTextView.cs
- EdmError.cs
- StringDictionary.cs
- IssuanceTokenProviderBase.cs
- LoginName.cs
- Documentation.cs
- DataControlFieldsEditor.cs