FileWebResponse.ContentType プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > FileWebResponse.ContentType プロパティの意味・解説 

FileWebResponse.ContentType プロパティ

ファイル システム リソースコンテンツ タイプ取得します

名前空間: System.Net
アセンブリ: System (system.dll 内)
構文構文

解説解説
使用例使用例

ContentType プロパティ使用してファイル システム リソースコンテンツ タイプ取得する例を次に示します

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
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);
     }
}
void GetPage( String^ url )
{
   try
   {
      Uri^ fileUrl = gcnew Uri( String::Concat( "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 );
   }
}
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}",
            System.Convert.ToString(myFileWebResponse.get_ContentLength()),
            myFileWebResponse.get_ContentType());

        // Release resources of response object.
        myFileWebResponse.Close();
    }
    catch (WebException e) {
        Console.WriteLine("\r\nWebException thrown.The Reason for
 failure "
            + " is : {0}", e.get_Status());
    }
    catch (System.Exception e) {
        Console.WriteLine("\nThe following Exception was raised : {0}"
,
            e.get_Message());
    }
} //GetPage
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からFileWebResponse.ContentType プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からFileWebResponse.ContentType プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からFileWebResponse.ContentType プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

FileWebResponse.ContentType プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FileWebResponse.ContentType プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS