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
- ContactManager.cs
- AttributeData.cs
- RoamingStoreFile.cs
- ValidationSummary.cs
- BaseCAMarshaler.cs
- SafeCryptHandles.cs
- ParagraphResult.cs
- DeviceContext.cs
- Pointer.cs
- AppSettingsExpressionBuilder.cs
- XmlEnumAttribute.cs
- Hashtable.cs
- HttpRuntime.cs
- SystemResources.cs
- ClusterRegistryConfigurationProvider.cs
- BindingBase.cs
- DataListItemCollection.cs
- AspCompat.cs
- FormatConvertedBitmap.cs
- DataObjectAttribute.cs
- StandardBindingCollectionElement.cs
- BamlRecordHelper.cs
- InitializeCorrelation.cs
- EntityDataSourceContextCreatedEventArgs.cs
- BaseAutoFormat.cs
- XmlSchemaSimpleTypeList.cs
- Int32Storage.cs
- EncryptedReference.cs
- MenuRendererStandards.cs
- UnmanagedMarshal.cs
- Simplifier.cs
- Int16.cs
- ColumnHeader.cs
- EndpointAddress.cs
- _TransmitFileOverlappedAsyncResult.cs
- UnaryNode.cs
- SystemBrushes.cs
- WebDisplayNameAttribute.cs
- ItemDragEvent.cs
- ToolStripItem.cs
- ToolStripItemEventArgs.cs
- VBCodeProvider.cs
- PiiTraceSource.cs
- DocumentPaginator.cs
- Vector3DValueSerializer.cs
- EventTask.cs
- ObjectSecurity.cs
- DataGridViewImageColumn.cs
- FixedFindEngine.cs
- QuaternionConverter.cs
- ResourceCategoryAttribute.cs
- XamlToRtfParser.cs
- DbConnectionFactory.cs
- KeyPressEvent.cs
- DirectoryNotFoundException.cs
- ImmutableClientRuntime.cs
- SerializationIncompleteException.cs
- TransactionsSectionGroup.cs
- KerberosSecurityTokenProvider.cs
- CollectionViewGroupRoot.cs
- MultipartIdentifier.cs
- MatrixTransform3D.cs
- VisualStyleInformation.cs
- ThemeableAttribute.cs
- UnsafeNativeMethods.cs
- InstalledFontCollection.cs
- propertyentry.cs
- IriParsingElement.cs
- TrackingExtract.cs
- Gdiplus.cs
- HTMLTextWriter.cs
- ProviderUtil.cs
- CompensatableSequenceActivity.cs
- TypefaceMap.cs
- GetPageCompletedEventArgs.cs
- ProcessHostFactoryHelper.cs
- oledbmetadatacollectionnames.cs
- ProxyFragment.cs
- PolicyValidationException.cs
- DataControlPagerLinkButton.cs
- BackoffTimeoutHelper.cs
- MetricEntry.cs
- NullableDoubleSumAggregationOperator.cs
- URL.cs
- ListMarkerSourceInfo.cs
- Condition.cs
- TokenBasedSetEnumerator.cs
- DesignerDataSourceView.cs
- PatternMatchRules.cs
- X509Certificate.cs
- DefaultExpression.cs
- FormViewRow.cs
- DataSourceControlBuilder.cs
- WorkflowEventArgs.cs
- BitmapSizeOptions.cs
- Random.cs
- CodeEntryPointMethod.cs
- DataTable.cs
- CaseInsensitiveComparer.cs
- ReturnType.cs