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

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

IsolatedStorageFile.MaximumSize プロパティ

クォータによる制限内で、分離ストレージとして確保できる領域最大容量を表す値を取得します

このプロパティは、CLS準拠していません。  

名前空間: System.IO.IsolatedStorage
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<CLSCompliantAttribute(False)> _
Public Overrides ReadOnly
 Property MaximumSize As ULong
Dim instance As IsolatedStorageFile
Dim value As ULong

value = instance.MaximumSize
[CLSCompliantAttribute(false)] 
public override ulong MaximumSize { get; }
[CLSCompliantAttribute(false)] 
public:
virtual property usigned long long MaximumSize {
    usigned long long get () override;
}
/** @property */
public UInt64 get_MaximumSize ()

プロパティ
分離ストレージ領域制限 (バイト単位)。

例外例外
解説解説
使用例使用例

MaximumSize プロパティコード例次に示します。この例のコンテキスト全体については、IsolatedStorageFile の概要参照してください

Dim writer As New StreamWriter(isoStream)
' Update the data based on the new inputs.
writer.WriteLine(Me.NewsUrl)
writer.WriteLine(Me.SportsUrl)

'  Calculate the amount of space used to record this user's preferences.
Dim d As Double = Convert.ToDouble(isoFile.CurrentSize)
 / Convert.ToDouble(isoFile.MaximumSize)
Console.WriteLine(("CurrentSize = " & isoFile.CurrentSize.ToString()))
Console.WriteLine(("MaximumSize = " & isoFile.MaximumSize.ToString()))
StreamWriter writer = new StreamWriter(isoStream);
// Update the data based on the new inputs.
writer.WriteLine(this.NewsUrl);
writer.WriteLine(this.SportsUrl);

// Calculate the amount of space used to record this user's preferences.
double d = isoFile.CurrentSize / isoFile.MaximumSize;
Console.WriteLine("CurrentSize = " + isoFile.CurrentSize.ToString());
Console.WriteLine("MaximumSize = " + isoFile.MaximumSize.ToString());
StreamWriter^ writer = gcnew StreamWriter( isoStream );

// Update the data based on the new inputs.
writer->WriteLine( this->NewsUrl );
writer->WriteLine( this->SportsUrl );

// Calculate the amount of space used to record this user's preferences.
double d = isoFile->CurrentSize / isoFile->MaximumSize;
Console::WriteLine( "CurrentSize = {0}", isoFile->CurrentSize.ToString()
 );
Console::WriteLine( "MaximumSize = {0}", isoFile->MaximumSize.ToString()
 );

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
IsolatedStorageFile クラス
IsolatedStorageFile メンバ
System.IO.IsolatedStorage 名前空間


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

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

辞書ショートカット

すべての辞書の索引

「IsolatedStorageFile.MaximumSize プロパティ」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS