WebMessageEncodingElement クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SOAP 以外のメッセージで使用される文字エンコーディングを指定する構成要素を表します。 このクラスは継承できません。
public ref class WebMessageEncodingElement sealed : System::ServiceModel::Configuration::BindingElementExtensionElement
public sealed class WebMessageEncodingElement : System.ServiceModel.Configuration.BindingElementExtensionElement
type WebMessageEncodingElement = class
inherit BindingElementExtensionElement
Public NotInheritable Class WebMessageEncodingElement
Inherits BindingElementExtensionElement
- 継承
-
WebMessageEncodingElement
- 継承
-
WebMessageEncodingElement
例
using System;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.ServiceModel.Configuration;
class Program
{
static void Main(string[] args)
{
WebMessageEncodingElement webMEE = new WebMessageEncodingElement();
Console.WriteLine("The BE type is: {0}", webMEE.BindingElementType);
int maxReadPoolSize = webMEE.MaxReadPoolSize;
Console.WriteLine("The MaxReadPoolSize is: {0}", maxReadPoolSize);
maxReadPoolSize = 128;
Console.WriteLine("The MaxReadPoolSize has been changed to: {0}", maxReadPoolSize);
int maxWritePoolSize = webMEE.MaxWritePoolSize;
Console.WriteLine("The MaxWritePoolSize is: {0}", maxWritePoolSize);
maxWritePoolSize = 48;
Console.WriteLine("The MaxWritePoolSize has been changed to: {0}", maxWritePoolSize);
Encoding webMessageEncoding = webMEE.WriteEncoding;
Console.WriteLine("The write encoding is: {0}", webMessageEncoding);
webMessageEncoding = UnicodeEncoding.Unicode;
Console.WriteLine("The write encoding has been changed to: {0}", webMessageEncoding);
XmlDictionaryReaderQuotasElement webMessageReaderQuotasElement = webMEE.ReaderQuotas;
Console.WriteLine("The max depth of the reader Quotas is: {0}", webMessageReaderQuotasElement.MaxDepth);
Console.WriteLine("Press <ENTER> to terminate the program.");
Console.ReadLine();
}
}
注釈
エンコーディングは、Unicode 文字のセットをバイト シーケンスに変換するプロセスです。 SOAP 以外のメッセージのエンコーディングの種類は、Text、JSON、および raw (生) です。
WebMessageEncodingElement は、構成の WebMessageEncodingBindingElement を表します。 には、Windows Communication Foundation (WCF) によって提供されるさまざまな内部エンコーダー WebMessageEncodingBindingElement (テキスト/JSON/未加工バイナリ) に受信メッセージのコンテンツタイプをマップする方法をオーバーライドするために使用できる複合エンコーダーを接続する機能拡張ポイントが用意されています。 複合メッセージ エンコーダーは SOAP または WS-Addressing をサポートしません。
コンストラクター
WebMessageEncodingElement() |
WebMessageEncodingElement クラスの新しいインスタンスを初期化します。 |
プロパティ
BindingElementType |
この構成要素で有効にできるバインディング要素の種類を取得します。 |
ConfigurationElementName |
この構成要素の名前を取得します。 (継承元 ServiceModelExtensionElement) |
CurrentConfiguration |
現在の Configuration インスタンスが属している構成階層を表す最上位の ConfigurationElement インスタンスへの参照を取得します。 (継承元 ConfigurationElement) |
ElementInformation |
ElementInformation オブジェクトのカスタマイズできない情報と機能を格納する ConfigurationElement オブジェクトを取得します。 (継承元 ConfigurationElement) |
ElementProperty |
ConfigurationElementProperty オブジェクト自体を表す ConfigurationElement オブジェクトを取得します。 (継承元 ConfigurationElement) |
EvaluationContext |
ContextInformation オブジェクトの ConfigurationElement オブジェクトを取得します。 (継承元 ConfigurationElement) |
HasContext |
CurrentConfiguration プロパティが |
Item[ConfigurationProperty] |
この構成要素のプロパティまたは属性を取得または設定します。 (継承元 ConfigurationElement) |
Item[String] |
この構成要素のプロパティ、属性、または子要素を取得または設定します。 (継承元 ConfigurationElement) |
LockAllAttributesExcept |
ロックされている属性のコレクションを取得します。 (継承元 ConfigurationElement) |
LockAllElementsExcept |
ロックされている要素のコレクションを取得します。 (継承元 ConfigurationElement) |
LockAttributes |
ロックされている属性のコレクションを取得します。 (継承元 ConfigurationElement) |
LockElements |
ロックされている要素のコレクションを取得します。 (継承元 ConfigurationElement) |
LockItem |
要素がロックされているかどうかを示す値を取得または設定します。 (継承元 ConfigurationElement) |
MaxReadPoolSize |
新しいリーダーを割り当てずに同時に読み取り可能なメッセージの最大数を指定する値を取得または設定します。 |
MaxWritePoolSize |
新しいライターを割り当てずに同時に送信可能なメッセージの最大数を指定する値を取得または設定します。 |
Properties |
プロパティのコレクションを取得します。 (継承元 ConfigurationElement) |
ReaderQuotas |
このバインディングを使用して設定されるエンドポイントにより処理可能な、SOAP メッセージの複雑さに対する制約を取得または設定します。 |
WebContentTypeMapperType |
受信メッセージのコンテンツ タイプのマップ先の形式を指定する WebContentTypeMapper の型名を取得または設定します。 |
WriteEncoding |
バインディングでメッセージの発行に使用される文字セット エンコーディングを取得または設定します。 |