Example #1
0
 /// <summary>
 /// Retrieves the list of instances and databases that are part of the
 /// snapshot session at any given moment.
 /// </summary>
 /// <param name="snapshot">The identifier of the snapshot session.</param>
 /// <param name="numInstances">Returns the number of instances.</param>
 /// <param name="instances">Returns information about the instances.</param>
 /// <param name="grbit">Options for this call.</param>
 public static void JetOSSnapshotGetFreezeInfo(
     JET_OSSNAPID snapshot,
     out int numInstances,
     out JET_INSTANCE_INFO[] instances,
     SnapshotGetFreezeInfoGrbit grbit)
 {
     Api.Check(Api.Impl.JetOSSnapshotGetFreezeInfo(snapshot, out numInstances, out instances, grbit));
 }
Example #2
0
 /// <summary>
 /// Retrieves the list of instances and databases that are part of the
 /// snapshot session at any given moment.
 /// </summary>
 /// <param name="snapshot">The identifier of the snapshot session.</param>
 /// <param name="numInstances">Returns the number of instances.</param>
 /// <param name="instances">Returns information about the instances.</param>
 /// <param name="grbit">Options for this call.</param>
 public static void JetOSSnapshotGetFreezeInfo(
     JET_OSSNAPID snapshot,
     out int numInstances,
     out JET_INSTANCE_INFO[] instances,
     SnapshotGetFreezeInfoGrbit grbit)
 {
     Api.Check(Api.Impl.JetOSSnapshotGetFreezeInfo(snapshot, out numInstances, out instances, grbit));
 }