@@ -474,7 +474,7 @@ public Task ScopedSerializerFluent()
474474 .AddExtraSettings (_ => _ .TypeNameHandling = TypeNameHandling .All );
475475}
476476```
477- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2387-L2414 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scopedserializer ' title =' Start of snippet ' >anchor</a ></sup >
477+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2412-L2439 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-scopedserializer ' title =' Start of snippet ' >anchor</a ></sup >
478478<!-- endSnippet -->
479479
480480Result:
@@ -602,7 +602,7 @@ public Task IgnoreTypeFluent()
602602 .IgnoreMembersWithType <ToIgnoreStruct >();
603603}
604604```
605- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1627-L1732 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoretype ' title =' Start of snippet ' >anchor</a ></sup >
605+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1652-L1757 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoretype ' title =' Start of snippet ' >anchor</a ></sup >
606606<!-- endSnippet -->
607607
608608Or globally:
@@ -612,7 +612,7 @@ Or globally:
612612``` cs
613613VerifierSettings .IgnoreMembersWithType <ToIgnore >();
614614```
615- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1620-L1624 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoretypeglobal ' title =' Start of snippet ' >anchor</a ></sup >
615+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1645-L1649 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoretypeglobal ' title =' Start of snippet ' >anchor</a ></sup >
616616<!-- endSnippet -->
617617
618618Result:
@@ -683,7 +683,7 @@ public Task AddIgnoreInstanceFluent()
683683 .IgnoreInstance <Instance >(_ => _ .Property == " Ignore" );
684684}
685685```
686- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1548-L1587 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoreinstance ' title =' Start of snippet ' >anchor</a ></sup >
686+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1573-L1612 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoreinstance ' title =' Start of snippet ' >anchor</a ></sup >
687687<!-- endSnippet -->
688688
689689Or globally:
@@ -693,7 +693,7 @@ Or globally:
693693``` cs
694694VerifierSettings .IgnoreInstance <Instance >(_ => _ .Property == " Ignore" );
695695```
696- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1541-L1545 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoreinstanceglobal ' title =' Start of snippet ' >anchor</a ></sup >
696+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1566-L1570 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-addignoreinstanceglobal ' title =' Start of snippet ' >anchor</a ></sup >
697697<!-- endSnippet -->
698698
699699Result:
@@ -736,7 +736,7 @@ public Task WithObsoleteProp()
736736 return Verify (target );
737737}
738738```
739- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2353-L2373 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-withobsoleteprop ' title =' Start of snippet ' >anchor</a ></sup >
739+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2378-L2398 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-withobsoleteprop ' title =' Start of snippet ' >anchor</a ></sup >
740740<!-- endSnippet -->
741741
742742Result:
@@ -784,7 +784,7 @@ public Task WithObsoletePropIncludedFluent()
784784 .IncludeObsoletes ();
785785}
786786```
787- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2324-L2351 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-withobsoletepropincluded ' title =' Start of snippet ' >anchor</a ></sup >
787+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2349-L2376 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-withobsoletepropincluded ' title =' Start of snippet ' >anchor</a ></sup >
788788<!-- endSnippet -->
789789
790790Or globally:
@@ -794,7 +794,7 @@ Or globally:
794794``` cs
795795VerifierSettings .IncludeObsoletes ();
796796```
797- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2317-L2321 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-withobsoletepropincludedglobally ' title =' Start of snippet ' >anchor</a ></sup >
797+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2342-L2346 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-withobsoletepropincludedglobally ' title =' Start of snippet ' >anchor</a ></sup >
798798<!-- endSnippet -->
799799
800800Result:
@@ -855,7 +855,7 @@ public Task IgnoreMemberByExpressionFluent()
855855 _ => _ .PropertyThatThrows );
856856}
857857```
858- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1912-L1951 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbyexpression ' title =' Start of snippet ' >anchor</a ></sup >
858+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1937-L1976 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbyexpression ' title =' Start of snippet ' >anchor</a ></sup >
859859<!-- endSnippet -->
860860
861861Or globally
@@ -870,7 +870,7 @@ VerifierSettings.IgnoreMembers<IgnoreExplicitTarget>(
870870 _ => _ .GetOnlyProperty ,
871871 _ => _ .PropertyThatThrows );
872872```
873- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1900-L1909 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbyexpressionglobal ' title =' Start of snippet ' >anchor</a ></sup >
873+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1925-L1934 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbyexpressionglobal ' title =' Start of snippet ' >anchor</a ></sup >
874874<!-- endSnippet -->
875875
876876Result:
@@ -944,7 +944,7 @@ public Task IgnoreMemberByNameFluent()
944944 .IgnoreMember <IgnoreExplicitTarget >(_ => _ .PropertyThatThrows );
945945}
946946```
947- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2004-L2057 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbyname ' title =' Start of snippet ' >anchor</a ></sup >
947+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2029-L2082 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbyname ' title =' Start of snippet ' >anchor</a ></sup >
948948<!-- endSnippet -->
949949
950950Or globally:
@@ -964,7 +964,7 @@ VerifierSettings.IgnoreMember<IgnoreExplicitTarget>("Field");
964964// For a specific type with expression
965965VerifierSettings .IgnoreMember <IgnoreExplicitTarget >(_ => _ .PropertyThatThrows );
966966```
967- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1987-L2001 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbynameglobal ' title =' Start of snippet ' >anchor</a ></sup >
967+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2012-L2026 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignorememberbynameglobal ' title =' Start of snippet ' >anchor</a ></sup >
968968<!-- endSnippet -->
969969
970970Result:
@@ -1011,7 +1011,7 @@ public Task CustomExceptionPropFluent()
10111011 .IgnoreMembersThatThrow <CustomException >();
10121012}
10131013```
1014- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2209-L2228 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignoremembersthatthrow ' title =' Start of snippet ' >anchor</a ></sup >
1014+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2234-L2253 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignoremembersthatthrow ' title =' Start of snippet ' >anchor</a ></sup >
10151015<!-- endSnippet -->
10161016
10171017Or globally:
@@ -1021,7 +1021,7 @@ Or globally:
10211021``` cs
10221022VerifierSettings .IgnoreMembersThatThrow <CustomException >();
10231023```
1024- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2202-L2206 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignoremembersthatthrowglobal ' title =' Start of snippet ' >anchor</a ></sup >
1024+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L2227-L2231 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-ignoremembersthatthrowglobal ' title =' Start of snippet ' >anchor</a ></sup >
10251025<!-- endSnippet -->
10261026
10271027Result:
@@ -1234,7 +1234,7 @@ public Task MemberConverterByExpression()
12341234 return Verify (input );
12351235}
12361236```
1237- <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1953-L1977 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-memberconverter ' title =' Start of snippet ' >anchor</a ></sup >
1237+ <sup ><a href =' /src/Verify.Tests/Serialization/SerializationTests.cs#L1978-L2002 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-memberconverter ' title =' Start of snippet ' >anchor</a ></sup >
12381238<!-- endSnippet -->
12391239
12401240
0 commit comments