MimePartCollection.Remove メソッド
アセンブリ: System.Web.Services (system.web.services.dll 内)



Console.WriteLine("Removing a mimepart object...") ' Remove the mimepart from the mimepartcollection. myMimePartCollection.Remove(myMimePart1) ' Check whether the mimepart is removed or not. If Not myMimePartCollection.Contains(myMimePart1) Then Console.WriteLine("Mimepart is succesfully removed from mimepartcollection") End If
Console.WriteLine("Removing a mimepart object..."); // Remove the mimepart from the mimepartcollection. myMimePartCollection.Remove(myMimePart1); // Check whether the mimepart is removed or not. if(!myMimePartCollection.Contains(myMimePart1)) { Console.WriteLine("Mimepart is succesfully removed from mimepartcollection"); }
Console::WriteLine( "Removing a mimepart object..." ); // Remove the mimepart from the mimepartcollection. myMimePartCollection->Remove( myMimePart1 ); // Check whether the mimepart is removed or not. if ( !myMimePartCollection->Contains( myMimePart1 ) ) Console::WriteLine( "Mimepart is succesfully removed from mimepartcollection" );
Console.WriteLine("Removing a mimepart object..."); // Remove the mimepart from the mimepartcollection. myMimePartCollection.Remove(myMimePart1); // Check whether the mimepart is removed or not. if (!(myMimePartCollection.Contains(myMimePart1))) { Console.WriteLine("Mimepart is succesfully removed " + "from mimepartcollection"); }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からMimePartCollection.Remove メソッドを検索する場合は、下記のリンクをクリックしてください。

- MimePartCollection.Remove メソッドのページへのリンク