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
- AdornerHitTestResult.cs
- AssemblyCacheEntry.cs
- AdornerHitTestResult.cs
- WebServiceTypeData.cs
- GridItemPatternIdentifiers.cs
- NavigatorInput.cs
- BinaryMethodMessage.cs
- ProfileSection.cs
- DataRecordObjectView.cs
- HebrewNumber.cs
- WinFormsComponentEditor.cs
- CheckPair.cs
- TextEndOfLine.cs
- FocusManager.cs
- EntityRecordInfo.cs
- IgnoreFileBuildProvider.cs
- CollectionTypeElement.cs
- RelationshipType.cs
- ComponentGuaranteesAttribute.cs
- SpecialFolderEnumConverter.cs
- WebPartUtil.cs
- UrlParameterReader.cs
- HierarchicalDataSourceIDConverter.cs
- FrameworkContentElement.cs
- StylusEditingBehavior.cs
- ExpressionBinding.cs
- WebPartTracker.cs
- HttpRuntimeSection.cs
- CollectionBase.cs
- DataSourceView.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- WorkflowMessageEventHandler.cs
- CodeGroup.cs
- X509ThumbprintKeyIdentifierClause.cs
- DataGridLinkButton.cs
- StrongNameSignatureInformation.cs
- EditingCoordinator.cs
- DataGridCommandEventArgs.cs
- ApplyImportsAction.cs
- ServiceOperation.cs
- RowUpdatedEventArgs.cs
- WrappingXamlSchemaContext.cs
- CompoundFileReference.cs
- AtlasWeb.Designer.cs
- ApplicationDirectoryMembershipCondition.cs
- BuildResult.cs
- StorageEndPropertyMapping.cs
- InternalMappingException.cs
- ListBindingConverter.cs
- LocalClientSecuritySettingsElement.cs
- GridItemProviderWrapper.cs
- BinHexEncoder.cs
- BitmapSourceSafeMILHandle.cs
- MessageBox.cs
- NameValueCache.cs
- ComponentRenameEvent.cs
- HostingPreferredMapPath.cs
- PaperSize.cs
- DataRowChangeEvent.cs
- ArgIterator.cs
- PolyQuadraticBezierSegment.cs
- RoleManagerEventArgs.cs
- NavigationEventArgs.cs
- Shared.cs
- UInt64Storage.cs
- SoapConverter.cs
- IdentityHolder.cs
- FormViewDeletedEventArgs.cs
- PageThemeParser.cs
- BamlTreeUpdater.cs
- FrameworkTextComposition.cs
- ParameterModifier.cs
- DataGridColumnHeadersPresenter.cs
- WrappedIUnknown.cs
- RotateTransform.cs
- ButtonBaseAdapter.cs
- OleDbPermission.cs
- ResourceManagerWrapper.cs
- DataGrid.cs
- securitycriticaldataClass.cs
- CookieProtection.cs
- StylusPoint.cs
- BindingElement.cs
- FrameworkObject.cs
- BamlResourceDeserializer.cs
- ZipIOLocalFileBlock.cs
- ReadOnlyHierarchicalDataSource.cs
- GlobalProxySelection.cs
- ProfileParameter.cs
- SignatureDescription.cs
- EventDescriptor.cs
- UIElementParaClient.cs
- securitycriticaldata.cs
- SQLInt64Storage.cs
- FrameworkReadOnlyPropertyMetadata.cs
- TitleStyle.cs
- BitmapInitialize.cs
- VariableBinder.cs
- CodeDelegateInvokeExpression.cs
- TableRowGroup.cs