ProfilePropertySettings.SerializeAs Eigenschap
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee haalt u de serialisatiemethode op die wordt gebruikt voor de bijbehorende eigenschap in de dynamisch gegenereerde ProfileCommon klasse.
public:
property System::Web::Configuration::SerializationMode SerializeAs { System::Web::Configuration::SerializationMode get(); void set(System::Web::Configuration::SerializationMode value); };
[System.Configuration.ConfigurationProperty("serializeAs", DefaultValue=System.Web.Configuration.SerializationMode.ProviderSpecific)]
public System.Web.Configuration.SerializationMode SerializeAs { get; set; }
[<System.Configuration.ConfigurationProperty("serializeAs", DefaultValue=System.Web.Configuration.SerializationMode.ProviderSpecific)>]
member this.SerializeAs : System.Web.Configuration.SerializationMode with get, set
Public Property SerializeAs As SerializationMode
Waarde van eigenschap
Een van de SerializationMode waarden. De standaardwaarde is ProviderSpecific.
- Kenmerken
Voorbeelden
In het volgende codevoorbeeld ziet u hoe u de SerializeAs eigenschap gebruikt. Dit codevoorbeeld maakt deel uit van een groter voorbeeld voor de ProfileSection klasse.
// Get the current SerializeAs property value.
Console.WriteLine(
"Current SerializeAs value: '{0}'", profilePropertySettings.SerializeAs);
// Set the SerializeAs property to SerializationMode.Binary.
profilePropertySettings.SerializeAs = SerializationMode.Binary;
' Get the current SerializeAs property value.
Console.WriteLine( _
"Current SerializeAs value: '{0}'", profilePropertySettings.SerializeAs)
' Set the SerializeAs property to SerializationMode.Binary.
profilePropertySettings.SerializeAs = SerializationMode.Binary
Opmerkingen
Zie ASP.NET Overzicht van profieleigenschappen voor meer informatie over profieleigenschappen.