FileCodeGroup.AttributeString Property

Definition

Gets a string representation of the attributes of the policy statement for the code group.

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

Property Value

Always null.

Examples

The following code shows the use of the AttributeString property to get the attributes for the code group. This code example is part of a larger example provided for the FileCodeGroup class.

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

Remarks

FileCodeGroup does not use AttributeString, so this property is always null.

Applies to