Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Compilation / WCFModel / GeneratedContractType.cs / 1305376 / GeneratedContractType.cs
//------------------------------------------------------------------------------ //// Copyright (C) Microsoft Corporation. All Rights Reserved. // //----------------------------------------------------------------------------- // // This code is shared between ndp\fx\src\xsp\System\Web\Extensions\Compilation\WCFModel // and wizard\vsdesigner\designer\microsoft\vsdesigner\WCFModel. // Please make sure the code files between those two directories are alway in [....] when you make any changes to this code. // And always test these code in both places before check in. // The code under ndp\fx\src\xsp\System\Web\Extensions\Compilation\XmlSerializer might have to be regerenated when // the format of the svcmap file is changed, or class structure has been changed in this directory. Please follow the HowTo file // under Compilation directory to see how to regerenate that code. // using System; using XmlSerialization = System.Xml.Serialization; #if WEB_EXTENSIONS_CODE namespace System.Web.Compilation.WCFModel #else namespace Microsoft.VSDesigner.WCFModel #endif { ////// Map between (targetNamespace, PortTypeName) --> CLR TypeName /// ///#if WEB_EXTENSIONS_CODE internal class GeneratedContractType #else [CLSCompliant(true)] public class GeneratedContractType #endif { private string m_TargetNamespace; private string m_Name; private string m_ContractType; private string m_ConfigurationName; /// /// Constructor /// ///required by xml serializer public GeneratedContractType() { } ////// Constructor /// /// /// /// /// ///public GeneratedContractType(string targetNamespace, string portName, string contractType, string configurationName) { m_TargetNamespace = targetNamespace; m_Name = portName; m_ContractType = contractType; m_ConfigurationName = configurationName; } /// /// The TargetNamespace of this contract type in the WSDL file /// ////// [XmlSerialization.XmlAttribute()] public string TargetNamespace { get { return m_TargetNamespace; } set { m_TargetNamespace = value; } } /// /// The portTypeName of this contract type in the WSDL file /// ////// [XmlSerialization.XmlAttribute()] public string Name { get { return m_Name; } set { m_Name = value; } } /// /// The generated CLR type name of this contract type /// ////// [XmlSerialization.XmlAttribute()] public string ContractType { get { return m_ContractType; } set { m_ContractType = value; } } /// /// The name of this contract in the config file /// ////// [XmlSerialization.XmlAttribute()] public string ConfigurationName { get { return m_ConfigurationName; } set { m_ConfigurationName = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Point3DAnimationBase.cs
- HMACSHA384.cs
- NamespaceQuery.cs
- ImageCodecInfo.cs
- ScriptManager.cs
- PtsHelper.cs
- DbDeleteCommandTree.cs
- BaseParaClient.cs
- DropShadowEffect.cs
- ImageDrawing.cs
- ApplySecurityAndSendAsyncResult.cs
- BindingExpression.cs
- MeasureItemEvent.cs
- UserControlDesigner.cs
- Matrix3DValueSerializer.cs
- SelectionEditingBehavior.cs
- SqlInternalConnection.cs
- IteratorDescriptor.cs
- RoleService.cs
- BitmapEffectCollection.cs
- HttpConfigurationSystem.cs
- DataSourceProvider.cs
- ToolBar.cs
- VisualTarget.cs
- FlowLayoutPanel.cs
- ZoneMembershipCondition.cs
- PeerNameRecord.cs
- CircleHotSpot.cs
- DataGridToolTip.cs
- DetailsViewInsertedEventArgs.cs
- PropertyEmitterBase.cs
- DataGridLength.cs
- TableProviderWrapper.cs
- Label.cs
- ControlBindingsCollection.cs
- Base64Encoding.cs
- QueryOutputWriter.cs
- ReflectionHelper.cs
- AuthenticationService.cs
- TypeSource.cs
- InkCollectionBehavior.cs
- QueryGenerator.cs
- ConfigXmlComment.cs
- CompilerTypeWithParams.cs
- ClaimTypeElement.cs
- AspProxy.cs
- PropertyIDSet.cs
- HatchBrush.cs
- Utils.cs
- SortDescription.cs
- GlobalProxySelection.cs
- ToolBarPanel.cs
- SelfIssuedTokenFactoryCredential.cs
- Transactions.cs
- FixedSOMLineRanges.cs
- CompilerWrapper.cs
- ObjectContextServiceProvider.cs
- HttpConfigurationContext.cs
- SqlRewriteScalarSubqueries.cs
- PrintPreviewDialog.cs
- X509ChainElement.cs
- BindingList.cs
- PointLightBase.cs
- OracleConnectionFactory.cs
- TransformGroup.cs
- ObjectAnimationUsingKeyFrames.cs
- PathSegmentCollection.cs
- ResizeGrip.cs
- CalendarDay.cs
- TypeContext.cs
- BamlMapTable.cs
- TextPointerBase.cs
- DataGridViewUtilities.cs
- DocumentReference.cs
- Pen.cs
- ContextMenu.cs
- SecurityTokenException.cs
- DbgUtil.cs
- StreamWithDictionary.cs
- AsymmetricSignatureFormatter.cs
- SecurityPolicySection.cs
- FixedSOMTableRow.cs
- HttpCacheVaryByContentEncodings.cs
- DesignerDataTable.cs
- MouseActionValueSerializer.cs
- EntityContainerRelationshipSetEnd.cs
- SizeChangedInfo.cs
- Token.cs
- Attribute.cs
- FontConverter.cs
- HwndSource.cs
- DropShadowBitmapEffect.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- LongValidatorAttribute.cs
- InstanceStore.cs
- ExceptionHandler.cs
- RichTextBoxContextMenu.cs
- MeasurementDCInfo.cs
- TransformValueSerializer.cs
- MeshGeometry3D.cs