You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
68
external/referencesource/System.ServiceModel/System/ServiceModel/PeerResolvers/ResolveInfo.cs
vendored
Normal file
68
external/referencesource/System.ServiceModel/System/ServiceModel/PeerResolvers/ResolveInfo.cs
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
//------------------------------------------------------------
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user