ProfileService.GetPropertiesMetadata 方法

定义

检索有关可通过配置文件服务使用的配置文件属性的信息。

public:
 cli::array <System::Web::ApplicationServices::ProfilePropertyMetadata ^> ^ GetPropertiesMetadata();
[System.ServiceModel.OperationContract]
public System.Web.ApplicationServices.ProfilePropertyMetadata[] GetPropertiesMetadata ();
[<System.ServiceModel.OperationContract>]
member this.GetPropertiesMetadata : unit -> System.Web.ApplicationServices.ProfilePropertyMetadata[]
Public Function GetPropertiesMetadata () As ProfilePropertyMetadata()

返回

ProfilePropertyMetadata[]

一个 ProfilePropertyMetadata 对象的数组,这些对象包含有关配置文件属性的信息。

属性

注解

使用此方法GetPropertiesMetadata从与 Windows Communication Framework (WCF) 兼容的客户端应用程序中检索有关配置文件属性的信息。 可以检索以下信息:

  • 属性的名称和类型。

  • 它们是否为只读。

  • 尚未进行身份验证的用户是否可以访问它们。

  • 属性的默认值。

检索这些值后,客户端应用程序可以采取适当的操作,例如不尝试设置只读属性。 当前用户不必进行身份验证才能调用 GetPropertiesMetadata 该方法,因为属性适用于所有用户。

适用于