System.ServiceModel.Description.MessagePartDescription
namespace System.ServiceModel.Description
{
public class MessagePartDescription
{
public string Name { get; }
public string Namespace { get; }
public Type Type { get; set; }
public int Index { get; set; }
public bool Multiple { get; set; }
public ProtectionLevel ProtectionLevel { get; set; }
public bool HasProtectionLevel { get; }
public MemberInfo MemberInfo { get; set; }
public MessagePartDescription(string name, string ns);
}
}