Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / PeerResolvers / ResolveInfo.cs / 1 / ResolveInfo.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 ResolveInfo { [DataContract(Name = "ResolveInfo", Namespace = PeerStrings.Namespace)] class ResolveInfoDC { [DataMember(Name = "ClientId")] public Guid ClientId; [DataMember(Name = "MeshId")] public string MeshId; [DataMember(Name = "MaxAddresses")] public int MaxAddresses; public ResolveInfoDC(Guid clientId, string meshId, int maxAddresses) { this.ClientId = clientId; this.MeshId = meshId; this.MaxAddresses = maxAddresses; } public ResolveInfoDC(){} } [MessageBodyMember(Name = "Resolve", Namespace = PeerStrings.Namespace)] ResolveInfoDC body; public ResolveInfo(Guid clientId, string meshId, int maxAddresses) { body = new ResolveInfoDC(clientId, meshId, maxAddresses); } public ResolveInfo() { body = new ResolveInfoDC(); } public Guid ClientId { get { return this.body.ClientId; } } public string MeshId { get { return this.body.MeshId; } } public int MaxAddresses { get { return this.body.MaxAddresses; } } 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
- DebugController.cs
- WebEvents.cs
- SuspendDesigner.cs
- IisTraceWebEventProvider.cs
- CodeObjectCreateExpression.cs
- StrongNameKeyPair.cs
- ViewSimplifier.cs
- XPathNodeIterator.cs
- CanonicalFormWriter.cs
- XsdDateTime.cs
- State.cs
- FixedSOMLineCollection.cs
- VideoDrawing.cs
- ServicePrincipalNameElement.cs
- Pen.cs
- DecoderFallback.cs
- AspCompat.cs
- XslException.cs
- AxHostDesigner.cs
- WebScriptMetadataInstanceContextProvider.cs
- ModifiableIteratorCollection.cs
- _DomainName.cs
- MyContact.cs
- TreeViewEvent.cs
- CodePageUtils.cs
- HttpWebRequest.cs
- InputScopeManager.cs
- WmfPlaceableFileHeader.cs
- WorkflowApplicationException.cs
- HttpResponse.cs
- odbcmetadatacollectionnames.cs
- ConfigurationStrings.cs
- FixedHyperLink.cs
- SBCSCodePageEncoding.cs
- GeometryCollection.cs
- JpegBitmapDecoder.cs
- CodeConstructor.cs
- StylusButtonCollection.cs
- AnnotationResourceChangedEventArgs.cs
- ConnectionManagementElement.cs
- OdbcException.cs
- Triplet.cs
- AmbientLight.cs
- DecoderReplacementFallback.cs
- MessageSmuggler.cs
- UniqueIdentifierService.cs
- ConnectionStringSettings.cs
- ExpressionWriter.cs
- Cursor.cs
- DataStorage.cs
- EventLogHandle.cs
- CookieParameter.cs
- serverconfig.cs
- PropertyMetadata.cs
- WebPartCatalogAddVerb.cs
- SqlNodeAnnotations.cs
- EventKeyword.cs
- Propagator.JoinPropagator.cs
- EventLevel.cs
- GroupLabel.cs
- MessageFilterTable.cs
- SemanticAnalyzer.cs
- ToolStripArrowRenderEventArgs.cs
- ColorAnimationUsingKeyFrames.cs
- RuleConditionDialog.Designer.cs
- TextServicesProperty.cs
- AnnotationObservableCollection.cs
- XmlSecureResolver.cs
- TextRunProperties.cs
- VBIdentifierNameEditor.cs
- SqlDataSource.cs
- CodeCommentStatementCollection.cs
- FixedSOMContainer.cs
- SpeechUI.cs
- initElementDictionary.cs
- XmlWellformedWriter.cs
- Geometry3D.cs
- ExpressionTextBoxAutomationPeer.cs
- ModelItemDictionaryImpl.cs
- PartialCachingAttribute.cs
- xml.cs
- SqlSelectClauseBuilder.cs
- SqlDataSourceConfigureFilterForm.cs
- NodeLabelEditEvent.cs
- SurrogateEncoder.cs
- EntitySqlException.cs
- SmtpNegotiateAuthenticationModule.cs
- SignatureConfirmations.cs
- EncoderParameters.cs
- ForceCopyBuildProvider.cs
- MappingItemCollection.cs
- EncoderExceptionFallback.cs
- KnowledgeBase.cs
- DesignerVerbCollection.cs
- ImageAnimator.cs
- SByteStorage.cs
- WorkflowInstance.cs
- SetUserPreferenceRequest.cs
- TreeViewImageKeyConverter.cs
- SqlSupersetValidator.cs