1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="SerializationObjectManager" FullName="System.Runtime.Serialization.SerializationObjectManager">
<TypeSignature Language="C#" Value="public sealed class SerializationObjectManager" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit SerializationObjectManager extends System.Object" />
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This class performs similar tasks as the <see cref="T:System.Runtime.Serialization.ObjectManager" />. The main difference is that the <see cref="T:System.Runtime.Serialization.SerializationObjectManager" /> performs its tasks during serialization while the <see cref="T:System.Runtime.Serialization.ObjectManager" /> performs its tasks during deserialization.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Manages serialization processes at run time. This class cannot be inherited.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SerializationObjectManager (System.Runtime.Serialization.StreamingContext context);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(valuetype System.Runtime.Serialization.StreamingContext context) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.SerializationObjectManager" /> class. </para>
</summary>
<param name="context">
<attribution license="cc4" from="Microsoft" modified="false" />An instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class that contains information about the current serialization operation.</param>
</Docs>
</Member>
<Member MemberName="RaiseOnSerializedEvent">
<MemberSignature Language="C#" Value="public void RaiseOnSerializedEvent ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RaiseOnSerializedEvent() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The OnSerializing callback event is created by applying the <see cref="T:System.Runtime.Serialization.OnSerializingAttribute" /> attribute to a method on the registered object. Similarly, the OnSerialized event is created by applying the <see cref="T:System.Runtime.Serialization.OnSerializedAttribute" /> attribute to a method on the registered object.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Invokes the OnSerializing callback event if the type of the object has one; and registers the object for raising the OnSerialized event if the type of the object has one.</para>
</summary>
</Docs>
</Member>
<Member MemberName="RegisterObject">
<MemberSignature Language="C#" Value="public void RegisterObject (object obj);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RegisterObject(object obj) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Runtime.Serialization.SerializationObjectManager.RaiseOnSerializedEvent" /> method will be called on the registered object. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Registers the object upon which events will be raised.</para>
</summary>
<param name="obj">
<attribution license="cc4" from="Microsoft" modified="false" />The object to register.</param>
</Docs>
</Member>
</Members>
</Type>
|