Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / PeerResolvers / ServiceSettingsResponseInfo.cs / 1 / ServiceSettingsResponseInfo.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.PeerResolvers { using System.ServiceModel.Channels; using System.ServiceModel; using System.Runtime.Serialization; [MessageContract(IsWrapped = false)] public class ServiceSettingsResponseInfo { [DataContract(Name = "ServiceSettingsResponseInfo", Namespace = PeerStrings.Namespace)] class ServiceSettingsResponseInfoDC { [DataMember(Name = "ControlMeshShape")] public bool ControlMeshShape; public ServiceSettingsResponseInfoDC(bool control) { ControlMeshShape = control; } } public ServiceSettingsResponseInfo():this(false){} public ServiceSettingsResponseInfo(bool control) { this.body= new ServiceSettingsResponseInfoDC(control); } [MessageBodyMember(Name = "ServiceSettings", Namespace = PeerStrings.Namespace)] ServiceSettingsResponseInfoDC body; public bool ControlMeshShape { get { return body.ControlMeshShape;} set { body.ControlMeshShape = value; } } public bool HasBody() { return body != null; } } } // 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
- EdmFunctions.cs
- ObjectCacheSettings.cs
- SQLCharsStorage.cs
- SmiTypedGetterSetter.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- Dictionary.cs
- MethodImplAttribute.cs
- NameValueConfigurationElement.cs
- SessionEndingEventArgs.cs
- SoapDocumentServiceAttribute.cs
- Rotation3D.cs
- LocatorManager.cs
- XmlNotation.cs
- XmlNodeList.cs
- TextViewDesigner.cs
- UInt64Storage.cs
- TableCellCollection.cs
- RepeaterItemEventArgs.cs
- CustomErrorCollection.cs
- MemberHolder.cs
- TypeContext.cs
- ProcessHostServerConfig.cs
- InvalidComObjectException.cs
- StyleCollection.cs
- XmlCharacterData.cs
- ApplicationSecurityManager.cs
- Missing.cs
- DataGridColumnDropSeparator.cs
- ReadOnlyState.cs
- entitydatasourceentitysetnameconverter.cs
- AddressAccessDeniedException.cs
- ContentPlaceHolder.cs
- RootContext.cs
- FixedSOMPageElement.cs
- _AutoWebProxyScriptWrapper.cs
- DataServiceRequestOfT.cs
- SignatureDescription.cs
- QilFactory.cs
- InstanceDataCollection.cs
- LocalTransaction.cs
- ComboBoxAutomationPeer.cs
- ZipFileInfoCollection.cs
- ListControlDesigner.cs
- FileRecordSequence.cs
- ResourceProperty.cs
- CompositionTarget.cs
- ExpressionUtilities.cs
- ColumnClickEvent.cs
- ActivityMarkupSerializer.cs
- InternalTypeHelper.cs
- SqlFacetAttribute.cs
- SubtreeProcessor.cs
- FontDialog.cs
- MetadataUtilsSmi.cs
- Point3DCollectionValueSerializer.cs
- ExpressionLexer.cs
- RepeatBehavior.cs
- DataService.cs
- PeerEndPoint.cs
- SchemaElementDecl.cs
- XmlHierarchicalEnumerable.cs
- MessageTransmitTraceRecord.cs
- OpenFileDialog.cs
- TypeFieldSchema.cs
- CommandCollectionEditor.cs
- DiscoveryCallbackBehavior.cs
- GcHandle.cs
- ServerValidateEventArgs.cs
- AuthenticationService.cs
- xmlNames.cs
- PageClientProxyGenerator.cs
- TypeConverterValueSerializer.cs
- SchemaImporterExtensionsSection.cs
- DivideByZeroException.cs
- ObjectDataSourceStatusEventArgs.cs
- DispatcherHookEventArgs.cs
- Pkcs7Signer.cs
- InvokeHandlers.cs
- SemaphoreSecurity.cs
- DrawingContext.cs
- ButtonChrome.cs
- XPathExpr.cs
- XPathScanner.cs
- ScriptingScriptResourceHandlerSection.cs
- COAUTHIDENTITY.cs
- Rect.cs
- BrowserTree.cs
- TextElementEnumerator.cs
- ChannelFactoryBase.cs
- TraceSection.cs
- SpeechDetectedEventArgs.cs
- CellCreator.cs
- LayoutEngine.cs
- UIElement3D.cs
- DirectoryRootQuery.cs
- Size.cs
- FixUpCollection.cs
- ReferencedCategoriesDocument.cs
- KeyGesture.cs
- ProxyGenerationError.cs