DynamicMethod.ReturnTypeCustomAttributes Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the custom attributes of the return type for the dynamic method.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overrides ReadOnly Property ReturnTypeCustomAttributes As ICustomAttributeProvider
Property Value
Type: System.Reflection.ICustomAttributeProviderAn ICustomAttributeProvider representing the custom attributes of the return type for the dynamic method.
Custom attributes are not supported on the return type of a dynamic method, so the array of custom attributes returned by the GetCustomAttributes method is always empty.
The following code example shows how to display the custom attributes of the return type of a dynamic method. This code example is part of a larger example provided for the DynamicMethod class.
' ReturnTypeCustomAttributes returns an ICustomeAttributeProvider ' that can be used to enumerate the custom attributes of the ' return value. At present, there is no way to set such custom ' attributes, so the list is empty. If hello.ReturnType Is GetType(System.Void) Then outputBlock.Text &= "The method has no return type." & vbLf Else Dim caProvider As ICustomAttributeProvider = _ hello.ReturnTypeCustomAttributes Dim returnAttributes() As Object = _ caProvider.GetCustomAttributes(True) If returnAttributes.Length = 0 Then outputBlock.Text &= "The return type has no custom attributes." & vbLf Else outputBlock.Text &= "The return type has the following custom attributes:" & vbLf For Each attr As Object In returnAttributes outputBlock.Text &= " " & attr.ToString() & vbLf Next attr End If End If