@@ -283,13 +283,13 @@ public partial class XmlDeclaration : System.Xml.XmlLinkedNode
283
283
{
284
284
protected internal XmlDeclaration ( string version , string ? encoding , string ? standalone , System . Xml . XmlDocument doc ) { }
285
285
[ System . Diagnostics . CodeAnalysis . AllowNullAttribute ]
286
- public string Encoding { get { throw null ; } set { } }
286
+ public string Encoding { get { throw null ; } [ System . Diagnostics . CodeAnalysis . MemberNotNullAttribute ( "_encoding" ) ] set { } }
287
287
public override string InnerText { get { throw null ; } set { } }
288
288
public override string LocalName { get { throw null ; } }
289
289
public override string Name { get { throw null ; } }
290
290
public override System . Xml . XmlNodeType NodeType { get { throw null ; } }
291
291
[ System . Diagnostics . CodeAnalysis . AllowNullAttribute ]
292
- public string Standalone { get { throw null ; } set { } }
292
+ public string Standalone { get { throw null ; } [ System . Diagnostics . CodeAnalysis . MemberNotNullAttribute ( "_standalone" ) ] set { } }
293
293
public override string ? Value { get { throw null ; } set { } }
294
294
public string Version { get { throw null ; } }
295
295
public override System . Xml . XmlNode CloneNode ( bool deep ) { throw null ; }
@@ -1337,11 +1337,11 @@ public XmlWriterSettings() { }
1337
1337
public bool CloseOutput { get { throw null ; } set { } }
1338
1338
public System . Xml . ConformanceLevel ConformanceLevel { get { throw null ; } set { } }
1339
1339
public bool DoNotEscapeUriAttributes { get { throw null ; } set { } }
1340
- public System . Text . Encoding Encoding { get { throw null ; } set { } }
1340
+ public System . Text . Encoding Encoding { get { throw null ; } [ System . Diagnostics . CodeAnalysis . MemberNotNullAttribute ( "_encoding" ) ] set { } }
1341
1341
public bool Indent { get { throw null ; } set { } }
1342
- public string IndentChars { get { throw null ; } set { } }
1342
+ public string IndentChars { get { throw null ; } [ System . Diagnostics . CodeAnalysis . MemberNotNullAttribute ( "_indentChars" ) ] set { } }
1343
1343
public System . Xml . NamespaceHandling NamespaceHandling { get { throw null ; } set { } }
1344
- public string NewLineChars { get { throw null ; } set { } }
1344
+ public string NewLineChars { get { throw null ; } [ System . Diagnostics . CodeAnalysis . MemberNotNullAttribute ( "_newLineChars" ) ] set { } }
1345
1345
public System . Xml . NewLineHandling NewLineHandling { get { throw null ; } set { } }
1346
1346
public bool NewLineOnAttributes { get { throw null ; } set { } }
1347
1347
public bool OmitXmlDeclaration { get { throw null ; } set { } }
0 commit comments