Bagikan melalui


FileCodeGroup.AttributeString Properti

Definisi

Mendapatkan representasi string dari atribut pernyataan kebijakan untuk grup kode.

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

Nilai Properti

Selalu null.

Contoh

Kode berikut menunjukkan penggunaan AttributeString properti untuk mendapatkan atribut untuk grup kode. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk FileCodeGroup kelas .

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

Keterangan

FileCodeGroup tidak menggunakan AttributeString, sehingga properti ini selalu null.

Berlaku untuk