System.ServiceModel.Channels.ReplyToHeader
namespace System.ServiceModel.Channels
{
internal class ReplyToHeader : AddressingHeader
{
public EndpointAddress ReplyTo { get; }
public static ReplyToHeader AnonymousReplyTo10 { get; }
public static ReplyToHeader Create(EndpointAddress replyTo, AddressingVersion addressingVersion);
public static ReplyToHeader ReadHeader(XmlDictionaryReader reader, AddressingVersion version, string actor, bool mustUnderstand, bool relay);
public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version);
}
}