次の方法で共有


FileWebResponse.ContentLength プロパティ

ファイル システム リソースのコンテンツ長を取得します。

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

プロパティ値

ファイル システム リソースから返されるバイト数。

解説

ContentLength プロパティは、ファイル システム リソースのバイト長を格納します。

使用例

[Visual Basic, C#, C++] ContentLength プロパティを使用して、ファイル システム リソースのコンテンツ長を取得する例を次に示します。

 
Public Shared Sub GetPage(url As [String])
    
    Try
        Dim fileUrl As New Uri("file://" + url)
        ' Create a 'FileWebrequest' object with the specified Uri 
        Dim myFileWebRequest As FileWebRequest = CType(WebRequest.Create(fileUrl), FileWebRequest)
        ' Send the 'fileWebRequest' and wait for response.    
        Dim myFileWebResponse As FileWebResponse = CType(myFileWebRequest.GetResponse(), FileWebResponse)
        
        ' The ContentLength and ContentType received as headers in the response object are also exposed as properties.
        ' These provide information about the length and type of the entity body in the response.
        Console.WriteLine(ControlChars.Cr + "Content length :{0}, Content Type : {1}", myFileWebResponse.ContentLength, myFileWebResponse.ContentType)
        myFileWebResponse.Close()
    Catch e As WebException
        Console.WriteLine(ControlChars.Lf + ControlChars.Cr + "The Reason for failure is : {0}", e.Status)
    Catch e As Exception
        Console.WriteLine(ControlChars.Cr + "The following exception was raised : {0}", e.Message)
    End Try

[C#] 
public static void GetPage(String url) 
 {
   try 
     {     
         Uri fileUrl = new Uri("file://"+url);
         // Create a 'FileWebrequest' object with the specified Uri.
         FileWebRequest myFileWebRequest = (FileWebRequest)WebRequest.Create(fileUrl); 
         // Send the 'fileWebRequest' and wait for response.    
         FileWebResponse myFileWebResponse = (FileWebResponse)myFileWebRequest.GetResponse(); 
         // Print the ContentLength and ContentType properties received as headers in the response object.
         Console.WriteLine("\nContent length :{0}, Content Type : {1}",myFileWebResponse.ContentLength,myFileWebResponse.ContentType);  
         // Release resources of response object.
         myFileWebResponse.Close();
     } 
   catch(WebException e) 
     {
         Console.WriteLine("\r\nWebException thrown.The Reason for failure is : {0}",e.Status); 
     }
   catch(Exception e)
     {
         Console.WriteLine("\nThe following Exception was raised : {0}",e.Message);
     }
}

[C++] 
void GetPage(String* url) {
   try {
      Uri* fileUrl = new Uri(String::Concat(S"file://", url));
      // Create a 'FileWebrequest' Object* with the specified Uri.
      FileWebRequest* myFileWebRequest = dynamic_cast<FileWebRequest*>(WebRequest::Create(fileUrl));
      // Send the 'fileWebRequest' and wait for response.
      FileWebResponse* myFileWebResponse = dynamic_cast<FileWebResponse*>(myFileWebRequest->GetResponse());
      // Print the ContentLength and ContentType properties received as headers in the response Object*.
      Console::WriteLine(S"\nContent length : {0}, Content Type : {1}", __box(myFileWebResponse->ContentLength), myFileWebResponse->ContentType);
      // Release resources of response Object*.
      myFileWebResponse->Close();
   } catch (WebException* e) {
      Console::WriteLine(S"\r\nWebException thrown.The Reason for failure is : {0}", __box( e->Status));
   } catch (Exception* e) {
      Console::WriteLine(S"\nThe following Exception was raised : {0}", e->Message);
   }
}

[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 ファミリ

参照

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