FileCodeGroup.AttributeString Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une chaîne représentant les attributs de l'instruction de stratégie pour le groupe de codes.
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
Valeur de propriété
Toujours null
.
Exemples
Le code suivant montre l’utilisation de la AttributeString propriété pour obtenir les attributs du groupe de codes. Cet exemple de code fait partie d’un exemple plus grand fourni pour la FileCodeGroup classe .
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
Remarques
FileCodeGroup n’utilise AttributeStringpas , donc cette propriété est toujours null
.