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
- __ComObject.cs
- ItemDragEvent.cs
- XmlException.cs
- MultilineStringConverter.cs
- Vector3dCollection.cs
- DataGridViewSelectedColumnCollection.cs
- CollectionConverter.cs
- AutoScrollExpandMessageFilter.cs
- IgnoreFileBuildProvider.cs
- WebZone.cs
- URLMembershipCondition.cs
- WhitespaceRuleLookup.cs
- DataBindingCollection.cs
- PageThemeCodeDomTreeGenerator.cs
- SQLBytesStorage.cs
- IntSecurity.cs
- PointValueSerializer.cs
- CSharpCodeProvider.cs
- SignatureResourcePool.cs
- FileVersionInfo.cs
- ImageClickEventArgs.cs
- DataQuery.cs
- XmlSerializerNamespaces.cs
- cookieexception.cs
- BrowserCapabilitiesCompiler.cs
- XmlText.cs
- BindingExpression.cs
- WebPartDescriptionCollection.cs
- ScrollViewer.cs
- Registry.cs
- PathHelper.cs
- RadioButton.cs
- PropertyEmitter.cs
- TdsParserHelperClasses.cs
- AspNetSynchronizationContext.cs
- LowerCaseStringConverter.cs
- ConditionBrowserDialog.cs
- Resources.Designer.cs
- TrackPointCollection.cs
- ObjectQueryProvider.cs
- WebEventCodes.cs
- AdornerLayer.cs
- PaintValueEventArgs.cs
- HttpModuleAction.cs
- DirectoryInfo.cs
- HttpClientCredentialType.cs
- Label.cs
- DataSourceSelectArguments.cs
- ContextQuery.cs
- WebPartEditorApplyVerb.cs
- XsdBuildProvider.cs
- SQLSingleStorage.cs
- Menu.cs
- StreamReader.cs
- SinglePhaseEnlistment.cs
- CheckedListBox.cs
- SoapClientProtocol.cs
- GridViewUpdatedEventArgs.cs
- TreeNodeSelectionProcessor.cs
- BrowserCapabilitiesCompiler.cs
- TextElementEnumerator.cs
- Rijndael.cs
- SessionStateModule.cs
- WizardPanel.cs
- PlainXmlDeserializer.cs
- BulletDecorator.cs
- SamlAction.cs
- FieldToken.cs
- CompareValidator.cs
- SuppressMergeCheckAttribute.cs
- GorillaCodec.cs
- WebPageTraceListener.cs
- ZipIOExtraFieldZip64Element.cs
- FlatButtonAppearance.cs
- SettingsProviderCollection.cs
- SapiRecoInterop.cs
- BinaryMethodMessage.cs
- _AcceptOverlappedAsyncResult.cs
- CollectionViewSource.cs
- RootBuilder.cs
- XPathConvert.cs
- MimeWriter.cs
- VisualBasicImportReference.cs
- TemplateControlBuildProvider.cs
- FileUtil.cs
- TextRunCacheImp.cs
- WsdlHelpGeneratorElement.cs
- EditingCoordinator.cs
- ProcessHostFactoryHelper.cs
- TypeLoader.cs
- RuntimeTrackingProfile.cs
- SafeReversePInvokeHandle.cs
- ScrollBar.cs
- TextElementCollection.cs
- GenericWebPart.cs
- AudioFileOut.cs
- DataBoundLiteralControl.cs
- OperationCanceledException.cs
- InputLanguageManager.cs
- SByteConverter.cs