PolicyUnit Struct
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta una misura delle dimensioni in un criterio di archivio log.
public value class PolicyUnit
public struct PolicyUnit
type PolicyUnit = struct
Public Structure PolicyUnit
- Ereditarietà
Esempio
In questo esempio viene illustrato come usare la classe e PolicyUnit la struttura per impostare i LogPolicy criteri per una sequenza di record di log.
// SET LOG POLICY
LogPolicy policy = sequence.LogStore.Policy;
// Set AutoGrow policy. This enables the log to automatically grow
// when the existing extents are full. New extents are added until
// we reach the MaximumExtentCount extents.
// AutoGrow policy is supported only in Windows Vista and not available in R2.
//policy.AutoGrow = true;
// Set the Growth Rate in terms of extents. This policy specifies
// "how much" the log should grow.
policy.GrowthRate = new PolicyUnit(2, PolicyUnitType.Extents);
// Set the AutoShrink policy. This enables the log to automatically
// shrink if the available free space exceeds the shrink percentage.
// AutoGrow/shrink policy is supported only in Windows Vista and not available in R2.
//policy.AutoShrinkPercentage = new PolicyUnit(30, PolicyUnitType.Percentage);
// Set the PinnedTailThreshold policy.
// A tail pinned event is triggered when there is no
// log space available and log space may be freed by advancing the base.
// The user must handle the tail pinned event by advancing the base of the log.
// If the user is not able to move the base of the log, the user should report with exception in
// the tail pinned handler.
// PinnedTailThreashold policy dictates the amount of space that the TailPinned event requests
// for advancing the base of the log. The amount of space can be in percentage or in terms of bytes
// which is rounded off to the nearest containers in CLFS. The default is 35 percent.
policy.PinnedTailThreshold = new PolicyUnit(10, PolicyUnitType.Percentage);
// Set the maximum extents the log can have.
policy.MaximumExtentCount = 6;
// Set the minimum extents the log can have.
policy.MinimumExtentCount = 2;
// Set the prefix for new containers that are added.
// when AutoGrow is enabled.
//policy.NewExtentPrefix = "MyLogPrefix";
// Set the suffix number for new containers that are added.
// when AutoGrow is enabled.
policy.NextExtentSuffix = 3;
// Commit the log policy.
policy.Commit();
// Refresh updates the IO.Log policy properties with current log policy
// set in the log.
policy.Refresh();
// LOG POLICY END
//
' SET LOG POLICY
Dim policy As LogPolicy = sequence.LogStore.Policy
' Set AutoGrow policy. This enables the log to automatically grow
' when the existing extents are full. New extents are added until
' we reach the MaximumExtentCount extents.
' AutoGrow policy is supported only in Windows Vista and not available in R2.
'policy.AutoGrow = true;
' Set the Growth Rate in terms of extents. This policy specifies
' "how much" the log should grow.
policy.GrowthRate = New PolicyUnit(2, PolicyUnitType.Extents)
' Set the AutoShrink policy. This enables the log to automatically
' shrink if the available free space exceeds the shrink percentage.
' AutoGrow/shrink policy is supported only in Windows Vista and not available in R2.
'policy.AutoShrinkPercentage = new PolicyUnit(30, PolicyUnitType.Percentage);
' Set the PinnedTailThreshold policy.
' A tail pinned event is triggered when there is no
' log space available and log space may be freed by advancing the base.
' The user must handle the tail pinned event by advancing the base of the log.
' If the user is not able to move the base of the log, the user should report with exception in
' the tail pinned handler.
' PinnedTailThreashold policy dictates the amount of space that the TailPinned event requests
' for advancing the base of the log. The amount of space can be in percentage or in terms of bytes
' which is rounded off to the nearest containers in CLFS. The default is 35 percent.
policy.PinnedTailThreshold = New PolicyUnit(10, PolicyUnitType.Percentage)
' Set the maximum extents the log can have.
policy.MaximumExtentCount = 6
' Set the minimum extents the log can have.
policy.MinimumExtentCount = 2
' Set the prefix for new containers that are added.
' when AutoGrow is enabled.
'policy.NewExtentPrefix = "MyLogPrefix";
' Set the suffix number for new containers that are added.
' when AutoGrow is enabled.
policy.NextExtentSuffix = 3
' Commit the log policy.
policy.Commit()
' Refresh updates the IO.Log policy properties with current log policy
' set in the log.
policy.Refresh()
' LOG POLICY END
'
Commenti
La PolicyUnit struttura rappresenta una misura delle dimensioni in un criterio di archivio log. L'enumerazione PolicyUnitType elenca le unità di misura che possono essere rappresentate.
È possibile utilizzare la Value proprietà per determinare le dimensioni della misura. Per determinare l'unità di misura, utilizzare la Type proprietà . È possibile convertire altri tipi di dati in un PolicyUnit utilizzando i Percentage metodi e Extents .
Costruttori
| Nome | Descrizione |
|---|---|
| PolicyUnit(Int64, PolicyUnitType) |
Inizializza una nuova istanza della PolicyUnit struttura con il valore e il tipo specificati. |
Proprietà
| Nome | Descrizione |
|---|---|
| Type |
Ottiene il tipo di unità dell'oggetto PolicyUnit. |
| Value |
Ottiene il valore di PolicyUnit. |
Metodi
| Nome | Descrizione |
|---|---|
| Equals(Object) |
Indica se questa istanza e un oggetto specificato sono uguali. |
| Extents(Int64) |
Crea un PolicyUnit oggetto di tipo Extents dal numero specificato. |
| GetHashCode() |
Fornisce un codice hash univoco per questo oggetto. |
| Percentage(Int64) |
Crea un PolicyUnit oggetto di tipo Percentage dal numero specificato. |
| ToString() |
Restituisce una rappresentazione di stringa di questo oggetto. |
Operatori
| Nome | Descrizione |
|---|---|
| Equality(PolicyUnit, PolicyUnit) |
Confronta due PolicyUnit istanze per determinare se sono uguali. |
| Inequality(PolicyUnit, PolicyUnit) |
Confronta due PolicyUnit istanze per determinare se non sono uguali. |