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
- DropDownList.cs
- Mapping.cs
- FontFamily.cs
- FormsAuthenticationUser.cs
- Parser.cs
- Unit.cs
- RepeatInfo.cs
- ToolStripSplitButton.cs
- EntityContainerRelationshipSet.cs
- TextTreeFixupNode.cs
- __Filters.cs
- ItemCollection.cs
- CircleHotSpot.cs
- GraphicsPath.cs
- FragmentQueryProcessor.cs
- Decimal.cs
- httpapplicationstate.cs
- backend.cs
- Renderer.cs
- SamlConditions.cs
- WebPartEventArgs.cs
- WebPartCancelEventArgs.cs
- DataBoundControlAdapter.cs
- EventSourceCreationData.cs
- ParserStack.cs
- _ConnectionGroup.cs
- ConnectionStringsExpressionBuilder.cs
- DataRow.cs
- GlyphRunDrawing.cs
- ExpandedWrapper.cs
- MarkupProperty.cs
- ControlBindingsCollection.cs
- ForeignConstraint.cs
- documentsequencetextcontainer.cs
- ViewCellSlot.cs
- StateMachineSubscriptionManager.cs
- ProgressChangedEventArgs.cs
- ThicknessConverter.cs
- SystemNetHelpers.cs
- SnapshotChangeTrackingStrategy.cs
- XmlSchemaAny.cs
- EUCJPEncoding.cs
- TagPrefixInfo.cs
- SwitchElementsCollection.cs
- SQLString.cs
- Parser.cs
- selecteditemcollection.cs
- OptionalColumn.cs
- LocalIdKeyIdentifierClause.cs
- SrgsRule.cs
- Transform.cs
- X509Certificate2.cs
- CodeAttributeDeclarationCollection.cs
- SqlCharStream.cs
- SqlLiftIndependentRowExpressions.cs
- FlowDocumentView.cs
- IteratorDescriptor.cs
- ProfileModule.cs
- EncryptedType.cs
- EventDescriptor.cs
- ToolStripDropDown.cs
- ReflectPropertyDescriptor.cs
- FamilyCollection.cs
- Boolean.cs
- TableLayoutSettingsTypeConverter.cs
- NetSectionGroup.cs
- FacetChecker.cs
- PresentationAppDomainManager.cs
- GenericPrincipal.cs
- HostedHttpRequestAsyncResult.cs
- GeometryConverter.cs
- ToolStripGrip.cs
- CopyCodeAction.cs
- SoapElementAttribute.cs
- BitmapDownload.cs
- ThumbButtonInfo.cs
- CaseInsensitiveHashCodeProvider.cs
- TempFiles.cs
- StrongTypingException.cs
- DataGridViewTopLeftHeaderCell.cs
- ContentTextAutomationPeer.cs
- StaticSiteMapProvider.cs
- Rect3DConverter.cs
- BitmapEffectRenderDataResource.cs
- DBPropSet.cs
- DrawingCollection.cs
- ContentValidator.cs
- TextChangedEventArgs.cs
- LogEntry.cs
- DocumentXPathNavigator.cs
- Thickness.cs
- ClientUtils.cs
- XmlTextReader.cs
- DefaultTraceListener.cs
- DeferredTextReference.cs
- XXXInfos.cs
- ControlPaint.cs
- ComplusTypeValidator.cs
- SecurityManager.cs
- WebPartConnection.cs