ProfilePropertyMetadata Class

Definition

Provides a collection of values that describe a profile property.

public ref class ProfilePropertyMetadata
public ref class ProfilePropertyMetadata : System::Runtime::Serialization::IExtensibleDataObject
[System.Runtime.Serialization.DataContract]
public class ProfilePropertyMetadata
[System.Runtime.Serialization.DataContract]
public class ProfilePropertyMetadata : System.Runtime.Serialization.IExtensibleDataObject
[<System.Runtime.Serialization.DataContract>]
type ProfilePropertyMetadata = class
[<System.Runtime.Serialization.DataContract>]
type ProfilePropertyMetadata = class
    interface IExtensibleDataObject
Public Class ProfilePropertyMetadata
Public Class ProfilePropertyMetadata
Implements IExtensibleDataObject
Inheritance
ProfilePropertyMetadata
Attributes
Implements

Remarks

You use the ProfilePropertyMetadata class to retrieve information about a profile property when you access profiles through the ProfileService class. You can retrieve the name and type of the property, whether it is read-only, whether it can be accessed by users who have not been authenticated, and the default value. An application can take the appropriate actions based on these values, such as not trying to set a read-only property.

To access the ProfilePropertyMetadata object from an application that's compatible with Windows Communication Framework (WCF), use the GetPropertiesMetadata method of the ProfileService class. The user does not have to be logged on to retrieve the ProfilePropertyMetadata object because the metadata for profile properties is not specific to a user's profile property values.

Constructors

ProfilePropertyMetadata()

Initializes a new instance of the ProfilePropertyMetadata class.

Properties

AllowAnonymousAccess

Gets or sets a value that indicates whether the property is available to unauthenticated users.

DefaultValue

Gets or sets the default value of the property.

ExtensionData

Gets or sets a reference to an ExtensionDataObject instance.

IsReadOnly

Gets or sets a value that indicates whether a profile property is read-only.

PropertyName

Gets or sets the name of the profile property.

SerializeAs

Gets or sets a value that indicates how to serialize the property value.

TypeName

Gets or sets the assembly-qualified name of the profile property type.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to