MessageEncodingBindingElement Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy MessageEncodingBindingElement.
Przeciążenia
MessageEncodingBindingElement() |
Inicjuje nowe wystąpienie klasy MessageEncodingBindingElement. |
MessageEncodingBindingElement(MessageEncodingBindingElement) |
Inicjuje MessageEncodingBindingElement nowe wystąpienie klasy zainicjowane z istniejącego elementu. |
MessageEncodingBindingElement()
Inicjuje nowe wystąpienie klasy MessageEncodingBindingElement.
protected:
MessageEncodingBindingElement();
protected MessageEncodingBindingElement ();
Protected Sub New ()
Dotyczy
MessageEncodingBindingElement(MessageEncodingBindingElement)
Inicjuje MessageEncodingBindingElement nowe wystąpienie klasy zainicjowane z istniejącego elementu.
protected:
MessageEncodingBindingElement(System::ServiceModel::Channels::MessageEncodingBindingElement ^ elementToBeCloned);
protected MessageEncodingBindingElement (System.ServiceModel.Channels.MessageEncodingBindingElement elementToBeCloned);
new System.ServiceModel.Channels.MessageEncodingBindingElement : System.ServiceModel.Channels.MessageEncodingBindingElement -> System.ServiceModel.Channels.MessageEncodingBindingElement
Protected Sub New (elementToBeCloned As MessageEncodingBindingElement)
Parametry
- elementToBeCloned
- MessageEncodingBindingElement
Element MessageEncodingBindingElement do sklonowania.
Przykłady
Poniższy kod ilustruje sposób implementowania tego konstruktora:
CustomTextMessageBindingElement(CustomTextMessageBindingElement binding)
: this(binding.Encoding, binding.MediaType, binding.MessageVersion)
{
this.readerQuotas = new XmlDictionaryReaderQuotas();
binding.ReaderQuotas.CopyTo(this.readerQuotas);
}