AggregateCacheDependency.GetUniqueID メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AggregateCacheDependency オブジェクトの一意の識別子を取得します。
public:
override System::String ^ GetUniqueID();
public override string GetUniqueID ();
override this.GetUniqueID : unit -> string
Public Overrides Function GetUniqueID () As String
戻り値
AggregateCacheDependency オブジェクトの一意の識別子。 関連付けられた依存関係オブジェクトのいずれにも一意の識別子がない場合は、GetUniqueID() メソッドは null
を返します。
例
次のコード例では、 メソッドをGetUniqueID使用して、 という名前aggDep
のクラスのインスタンスのAggregateCacheDependency識別子を作成して表示します。
' Create two CacheDependency objects, one to a
' text file and the other to an XML file.
' Create a CacheDependency array with these
' two objects as items in the array.
txtDep = New CacheDependency(Server.MapPath("Storage.txt"))
xmlDep = New CacheDependency(Server.MapPath("authors.xml"))
Dim DepArray() As CacheDependency = {txtDep, xmlDep}
' Create an AggregateCacheDependency object and
' use the Add method to add the array to it.
aggDep = New AggregateCacheDependency()
aggDep.Add(DepArray)
' Call the GetUniqueId method to generate
' an ID for each dependency in the array.
msg1.Text = aggDep.GetUniqueId()
' Add the new data set to the cache with
' dependencies on both files in the array.
Cache.Insert("XMLDataSet", Source, aggDep)
注釈
このメソッドは、配列内の各依存関係に一意の識別子を割り当て、各依存関係を返します。 識別子は、ファイル名 (ファイル依存関係の場合) またはキー名 (キャッシュ キーの依存関係の場合) と、このメソッドが依存関係に割り当てる文字列の組み合わせです。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET