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
- FtpCachePolicyElement.cs
- SerializationFieldInfo.cs
- ResourceDescriptionAttribute.cs
- PixelFormats.cs
- EntityCommandExecutionException.cs
- ActivationArguments.cs
- SubpageParaClient.cs
- SystemBrushes.cs
- DateTimeFormat.cs
- PersonalizablePropertyEntry.cs
- OleDbException.cs
- SqlCharStream.cs
- DetailsViewInsertEventArgs.cs
- BindingSource.cs
- RestHandlerFactory.cs
- DbConnectionInternal.cs
- FieldBuilder.cs
- PageWrapper.cs
- DocumentGridPage.cs
- StringBuilder.cs
- TemplatePartAttribute.cs
- WebColorConverter.cs
- DataViewManager.cs
- RoleManagerSection.cs
- DocumentManager.cs
- PrefixQName.cs
- FileChangesMonitor.cs
- HtmlElement.cs
- SQlBooleanStorage.cs
- MonitorWrapper.cs
- DataGridViewCheckBoxCell.cs
- Track.cs
- AnimationTimeline.cs
- ObjectComplexPropertyMapping.cs
- MiniConstructorInfo.cs
- GlyphingCache.cs
- OdbcEnvironmentHandle.cs
- MarkerProperties.cs
- SelectionListDesigner.cs
- CodeGotoStatement.cs
- ListSortDescriptionCollection.cs
- BaseCAMarshaler.cs
- ProfilePropertyNameValidator.cs
- Point4DConverter.cs
- QilScopedVisitor.cs
- ResourcesChangeInfo.cs
- ToolBar.cs
- AppSettingsExpressionBuilder.cs
- TransformerTypeCollection.cs
- CollectionContainer.cs
- DeviceSpecific.cs
- TextParagraphProperties.cs
- SerialStream.cs
- SortDescriptionCollection.cs
- ILGenerator.cs
- ImageListImage.cs
- MultiPropertyDescriptorGridEntry.cs
- ProgressBarAutomationPeer.cs
- Operators.cs
- EventListenerClientSide.cs
- XmlSchemaElement.cs
- TemplateManager.cs
- ToolStripSystemRenderer.cs
- HtmlControl.cs
- DynamicQueryableWrapper.cs
- KerberosTicketHashIdentifierClause.cs
- HelpProvider.cs
- MenuItemAutomationPeer.cs
- CounterCreationDataCollection.cs
- NetworkInformationPermission.cs
- ViewKeyConstraint.cs
- ArrangedElement.cs
- DesignerDataSourceView.cs
- SqlDesignerDataSourceView.cs
- ImageBrush.cs
- ConfigXmlReader.cs
- XmlConverter.cs
- ByteStack.cs
- IsolatedStorageFileStream.cs
- MenuItemBindingCollection.cs
- IPEndPointCollection.cs
- ConsoleCancelEventArgs.cs
- BoundingRectTracker.cs
- _NativeSSPI.cs
- Baml6ConstructorInfo.cs
- MDIControlStrip.cs
- TimerElapsedEvenArgs.cs
- BamlLocalizableResourceKey.cs
- CommonDialog.cs
- RemoteWebConfigurationHostStream.cs
- DisplayNameAttribute.cs
- ValidatorAttribute.cs
- DefaultIfEmptyQueryOperator.cs
- TextTreeRootNode.cs
- Relationship.cs
- _FtpDataStream.cs
- TraceProvider.cs
- LocalizationCodeDomSerializer.cs
- BrowserCapabilitiesFactory35.cs
- EventItfInfo.cs