MimeTypePropertyAttribute Class

Annotates a property on a class that has been annotated with the MediaEntryAttribute.

Inheritance Hierarchy

System.Object
  System.Attribute
    System.Data.Services.Client.MimeTypePropertyAttribute

Namespace:  System.Data.Services.Client
Assembly:  Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)

Syntax

'Declaration
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple := False, Inherited := True)> _
Public NotInheritable Class MimeTypePropertyAttribute _
    Inherits Attribute
'Usage
Dim instance As MimeTypePropertyAttribute
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public sealed class MimeTypePropertyAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple = false, Inherited = true)]
public ref class MimeTypePropertyAttribute sealed : public Attribute
[<SealedAttribute>]
[<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false, Inherited = true)>]
type MimeTypePropertyAttribute =  
    class 
        inherit Attribute 
    end
public final class MimeTypePropertyAttribute extends Attribute

The MimeTypePropertyAttribute type exposes the following members.

Constructors

  Name Description
Public method MimeTypePropertyAttribute Creates a new instance of the MimeTypePropertyAttribute.

Top

Properties

  Name Description
Public property DataPropertyName Gets the name of the MimeTypePropertyAttribute.
Public property MimeTypePropertyName Gets the Mime type of the MimeTypePropertyAttribute
Public property TypeId (Inherited from Attribute.)

Top

Methods

  Name Description
Public method Equals (Inherited from Attribute.)
Public method GetHashCode (Inherited from Attribute.)
Public method GetType (Inherited from Object.)
Public method IsDefaultAttribute (Inherited from Attribute.)
Public method Match (Inherited from Attribute.)
Public method ToString (Inherited from Object.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate method _Attribute.GetIDsOfNames (Inherited from Attribute.)
Explicit interface implemetationPrivate method _Attribute.GetTypeInfo (Inherited from Attribute.)
Explicit interface implemetationPrivate method _Attribute.GetTypeInfoCount (Inherited from Attribute.)
Explicit interface implemetationPrivate method _Attribute.Invoke (Inherited from Attribute.)

Top

Remarks

The MimeTypePropertyAttribute takes the name of the property that holds the mime type to associate with the property specified in the MediaEntryAttribute. The property specified is automatically set to the mime type of data when a media resource associated with the media link entry is delay-loaded by the LoadProperty method.

The system also reads the mime type from this property and uses it to set the Content-Type header in a POST request for a media link entry. A media link entry is an AtomPub protocol construct for handling binary data and metadata.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Data.Services.Client Namespace