ProfilePropertySettings.SerializeAs Egenskap
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Hämtar eller anger serialiseringsmetoden som används för den associerade egenskapen i den dynamiskt genererade ProfileCommon klassen.
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
Egenskapsvärde
Ett av SerializationMode värdena. Standardvärdet är ProviderSpecific.
- Attribut
Exempel
Följande kodexempel visar hur du använder egenskapen SerializeAs . Det här kodexemplet är en del av ett större exempel för ProfileSection klassen.
// 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
Kommentarer
Mer information om profilegenskaper finns i ASP.NET Översikt över profilegenskaper.