Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 9ae2afc

Browse files
authored
Merge pull request #6485 from stephentoub/iobjref_model
Add IObjectReference to model.xml
2 parents c1a5ed7 + d03f77f commit 9ae2afc

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/mscorlib/model.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9599,6 +9599,9 @@
95999599
<Member MemberType="Property" Name="Value" />
96009600
<Member MemberType="Property" Name="ObjectType" />
96019601
</Type>
9602+
<Type Name="System.Runtime.Serialization.IObjectReference">
9603+
<Member Name="GetRealObject(System.Runtime.Serialization.StreamingContext)" />
9604+
</Type>
96029605
<Type Name="System.Runtime.Serialization.ISerializable">
96039606
<Member Name="GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />
96049607
</Type>

src/mscorlib/ref/mscorlib.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11372,6 +11372,8 @@ public sealed class SerializationInfo
1137211372
public SerializationInfo(Type type, IFormatterConverter converter) { }
1137311373
public string AssemblyName { get { throw null; } set { } }
1137411374
public string FullTypeName { get { throw null; } set { } }
11375+
public bool IsFullTypeNameSetExplicit { get { throw null; } }
11376+
public bool IsAssemblyNameSetExplicit { get { throw null; } }
1137511377
public int MemberCount { get { throw null; } }
1137611378
public Type ObjectType { get { throw null; } }
1137711379
public void AddValue(string name, bool value) { }

0 commit comments

Comments
 (0)