다음을 통해 공유


FileCodeGroup.AttributeString 속성

정의

코드 그룹에 대한 정책 문의 특성을 나타내는 문자열 표현을 가져옵니다.

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입니다.

적용 대상