System.Data.DataSet.GetRemotingDiffGram C# (CSharp) Method

GetRemotingDiffGram() private method

private GetRemotingDiffGram ( DataTable table ) : string
table DataTable
return string
        internal string GetRemotingDiffGram(DataTable table)
        {
            StringWriter strWriter = new StringWriter(CultureInfo.InvariantCulture);
            XmlTextWriter writer = new XmlTextWriter(strWriter);
            writer.Formatting = Formatting.Indented;
            if (strWriter != null)
            {
                // Create and save the updates
                new NewDiffgramGen(table, false).Save(writer, table);
            }

            return strWriter.ToString();
        }