HttpStaticObjectsCollection.IsReadOnly Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die Auflistung schreibgeschützt ist.

public:
 property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean

Eigenschaftswert

Boolean

Gibt immer true zurück.

Beispiele

Der Code im folgenden Beispiel wird nur ausgeführt, wenn die Auflistung schreibgeschützt ist.

if (Application.StaticObjects.IsReadOnly)
{
   //...
}
If Application.StaticObjects.IsReadOnly Then
   '...
End If

Gilt für