FileCodeGroup.AttributeString プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コード グループのポリシー ステートメントの属性の文字列形式を取得します。
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
プロパティ値
常に null
。
例
次のコードは、 プロパティを AttributeString 使用してコード グループの属性を取得する方法を示しています。 このコード例は、FileCodeGroup クラスのために提供されている大規模な例の一部です。
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
注釈
FileCodeGroup では を使用 AttributeStringしないため、このプロパティは常に null
です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET