XML宣言を追加せずにオブジェクトをシリアル化するために使用される以下の関数があります。それを含むプロジェクトを Visual Studio 2012 で開いたところ、コード分析で「CA2202: オブジェクトを複数回破棄しないでください」という警告が表示されます。
他のケースでは、必要のない [object].Close を削除することでこの警告を修正しましたが、この場合、何を変更する必要があるのか わかりません。警告のヘルプは正確ではありませんそれがどのように引き起こされたか、またはそれを修正する方法についての情報。
警告が表示される正確な原因と、それを回避するためにリファクタリングするにはどうすればよいですか?
''' <summary>
''' Serialize an object without adding the XML declaration, etc.
''' </summary>
''' <param name="target"></param>
''' <returns></returns>
''' <remarks></remarks>
Public Shared Function SerializeElementToText(Of T As New)(target As T) As String
Dim serializer As New XmlSerializer(GetType(T))
'Need to serialize without namespaces to keep it clean and tidy
Dim emptyNS As New XmlSerializerNamespaces({XmlQualifiedName.Empty})
'Need to remove xml declaration as we will use this as part of a larger xml file
Dim settings As New XmlWriterSettings()
settings.OmitXmlDeclaration = True
settings.NewLineHandling = NewLineHandling.Entitize
settings.Indent = True
settings.IndentChars = (ControlChars.Tab)
Using stream As New StringWriter(), writer As XmlWriter = XmlWriter.Create(stream, settings)
'Serialize the item to the stream using the namespace supplied
serializer.Serialize(writer, target, emptyNS)
'Read the stream and return it as a string
Return stream.ToString
End Using 'Warning jumps to this line
End Function
私はこれを試しましたが、どちらも機能しません:
Using stream As New StringWriter()
Using writer As XmlWriter = XmlWriter.Create(stream, settings)
serializer.Serialize(writer, target, emptyNS)
Return stream.ToString
End Using
End Using 'Warning jumps to this line instead