1 instantiation of ProfilePropertyMetadata
System.Web.Extensions (1)
ApplicationServices\ApplicationServiceHelper.cs (1)
198ProfilePropertyMetadata metadata = new ProfilePropertyMetadata();
16 references to ProfilePropertyMetadata
System.Web.Extensions (16)
ApplicationServices\ApplicationServiceHelper.cs (5)
169internal static Collection<ProfilePropertyMetadata> GetProfilePropertiesMetadata() { 173return new Collection<ProfilePropertyMetadata>(); 176Collection<ProfilePropertyMetadata> metadatas = new Collection<ProfilePropertyMetadata>(); 198ProfilePropertyMetadata metadata = new ProfilePropertyMetadata();
ApplicationServices\ProfileService.cs (4)
241public ProfilePropertyMetadata[] GetPropertiesMetadata() { 247Collection<ProfilePropertyMetadata> metadatas = ApplicationServiceHelper.GetProfilePropertiesMetadata(); 248ProfilePropertyMetadata[] metadatasArray = new ProfilePropertyMetadata[metadatas.Count];
ClientServices\Providers\ClientSettingsProvider.cs (6)
112typeof(Collection<ProfilePropertyMetadata>)); 114Collection<ProfilePropertyMetadata> props2 = (Collection<ProfilePropertyMetadata>) o; 116foreach(ProfilePropertyMetadata p in props2) 122private static void AddToColl(ProfilePropertyMetadata p, SettingsPropertyCollection retColl, bool isAuthenticated) { 385typeof(ProfilePropertyMetadata),
Profile\ProfileService.cs (1)
156public Collection<ProfilePropertyMetadata> GetPropertiesMetadata() {