次の方法で共有


FileWebRequest.ContentLength プロパティ

送信しているデータのコンテンツ長を取得または設定します。

Overrides Public Property ContentLength As Long
[C#]
public override long ContentLength {get; set;}
[C++]
public: __property __int64 get_ContentLength();public: __property void set_ContentLength(__int64);
[JScript]
public override function get ContentLength() : long;public override function set ContentLength(long);

プロパティ値

送信している要求データのバイト数。

例外

例外の種類 条件
ArgumentException ContentLength が 0 未満です。

使用例

[Visual Basic, C#, C++] 送信しているデータのコンテンツ長を設定する例を次に示します。詳細については、 FileWebRequest クラスのトピックを参照してください。

 
' Set the ContentLength property.
myFileWebRequest.ContentLength = byteArray.Length

Dim contentLength As String = myFileWebRequest.ContentLength.ToString()

Console.WriteLine(ControlChars.Lf + "The content length is {0}.", contentLength)


[C#] 
// Set the ContentLength property.
myFileWebRequest.ContentLength=byteArray.Length;  
string contentLength = myFileWebRequest.ContentLength.ToString();
Console.WriteLine("\nThe content length is {0}.", contentLength);  

[C++] 
// Set the ContentLength property.
myFileWebRequest->ContentLength=byteArray->Length;
String* contentLength = myFileWebRequest->ContentLength.ToString();
Console::WriteLine(S"\nThe content length is {0}.", contentLength);

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

FileWebRequest クラス | FileWebRequest メンバ | System.Net 名前空間