Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- SourceSwitch.cs
- StylusTip.cs
- ArrayConverter.cs
- webeventbuffer.cs
- PageBuildProvider.cs
- XmlRawWriter.cs
- SingleBodyParameterMessageFormatter.cs
- RemoteWebConfigurationHostStream.cs
- ItemMap.cs
- EventDescriptorCollection.cs
- SoapBinding.cs
- ImpersonateTokenRef.cs
- SchemaTypeEmitter.cs
- SchemaComplexType.cs
- ScriptingJsonSerializationSection.cs
- CmsInterop.cs
- PersonalizationStateInfoCollection.cs
- RectangleHotSpot.cs
- WebUtil.cs
- Matrix3DValueSerializer.cs
- CompilationUtil.cs
- InternalDuplexBindingElement.cs
- DesignObjectWrapper.cs
- KeyTimeConverter.cs
- StylusLogic.cs
- DataIdProcessor.cs
- GeometryGroup.cs
- WebPartConnectionsConfigureVerb.cs
- ExcludePathInfo.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- TypefaceCollection.cs
- IntSecurity.cs
- MailWriter.cs
- AsyncOperation.cs
- LoadedOrUnloadedOperation.cs
- StateElement.cs
- WebZoneDesigner.cs
- DiscoveryProxy.cs
- AspNetHostingPermission.cs
- ApplicationFileCodeDomTreeGenerator.cs
- EventLogException.cs
- EntityTypeEmitter.cs
- MarginsConverter.cs
- XmlCharacterData.cs
- HtmlHead.cs
- Collection.cs
- AudienceUriMode.cs
- ResetableIterator.cs
- ImageMap.cs
- WebPartDisplayModeEventArgs.cs
- DiffuseMaterial.cs
- DateTimeFormatInfo.cs
- SslStream.cs
- EventHandlerList.cs
- AutomationElement.cs
- MethodImplAttribute.cs
- ClientConfigPaths.cs
- IDReferencePropertyAttribute.cs
- SkinBuilder.cs
- ElementAction.cs
- DBCSCodePageEncoding.cs
- Array.cs
- File.cs
- UICuesEvent.cs
- IntranetCredentialPolicy.cs
- ISO2022Encoding.cs
- Ops.cs
- SafeEventLogWriteHandle.cs
- GenerateTemporaryTargetAssembly.cs
- Maps.cs
- DiscoveryInnerClientAdhoc11.cs
- XMLSchema.cs
- ConcatQueryOperator.cs
- Stroke2.cs
- ScrollBarAutomationPeer.cs
- ProfileManager.cs
- KeyInfo.cs
- XmlBoundElement.cs
- WebDisplayNameAttribute.cs
- FacetValues.cs
- TextModifier.cs
- MessageBox.cs
- LinkDesigner.cs
- ScrollItemPattern.cs
- Types.cs
- TimeSpanValidatorAttribute.cs
- XmlArrayAttribute.cs
- mil_sdk_version.cs
- EntryWrittenEventArgs.cs
- SqlUDTStorage.cs
- LambdaCompiler.Expressions.cs
- LogLogRecordHeader.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- Collection.cs
- LogLogRecordEnumerator.cs
- SelectionBorderGlyph.cs
- BigInt.cs
- SessionStateModule.cs
- SID.cs
- XPathChildIterator.cs