e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
69 lines
1.8 KiB
C#
69 lines
1.8 KiB
C#
//------------------------------------------------------------
|
|
// 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;
|
|
}
|
|
}
|
|
}
|
|
|