Freigeben über


FileCodeGroup.AttributeString Eigenschaft

Definition

Ruft eine Zeichenfolgendarstellung der Attribute der Richtlinienanweisung für die Codegruppe ab.

public:
 virtual property System::String ^ AttributeString { System::String ^ get(); };
public override string AttributeString { get; }
member this.AttributeString : string
Public Overrides ReadOnly Property AttributeString As String

Eigenschaftswert

Immer null.

Beispiele

Der folgende Code zeigt die Verwendung der AttributeString -Eigenschaft zum Abrufen der Attribute für die Codegruppe. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die FileCodeGroup-Klasse bereitgestellt wird.

if ( fileCodeGroup->AttributeString != nullptr )
{
   throw gcnew NullReferenceException(
      L"The AttributeString property should be null." );
}
if (fileCodeGroup.AttributeString != null)
{
    throw new NullReferenceException(
        "The AttributeString property should be null.");
}
If (Not fileCodeGroup.AttributeString Is Nothing) Then
    Throw New NullReferenceException( _
        "AttributeString property is not empty")
End If

Hinweise

FileCodeGroup verwendet AttributeStringnicht , sodass diese Eigenschaft immer nullist.

Gilt für: