Xslt Transformation Helper : XML Transform « XML « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » XML » XML Transform 




Xslt Transformation Helper
        
using System;
using System.IO;
using System.Collections.ObjectModel;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.Xml.Xsl;
using System.Xml.XPath;

namespace A4G.Utils.Xml
{
  public class XsltTransformationHelper : IDisposable
  {
    private bool _disposed = false;

    public XsltTransformationHelper(string xsltPath)
    {
      _xsltPath = xsltPath;

      _xsltReader = new XmlTextReader(XsltPath);
      XslTransform.Load(_xsltReader);
    }

    ~XsltTransformationHelper()
    {
      Dispose(false);
    }

    private readonly string _xsltPath;
    public string XsltPath
    {
      get
      {
        return _xsltPath;
      }
    }

    private XslCompiledTransform _transform = new XslCompiledTransform();
    private XslCompiledTransform XslTransform
    {
      get
      {
        return _transform;
      }
    }

    private readonly XmlReader _xsltReader;
    private XmlReader XsltReader
    {
      get
      {
        return _xsltReader;
      }
    }

    public byte[] TransformWithXslt(byte[] sourceBytes)
    {
      MemoryStream source = new MemoryStream(sourceBytes, false);
      XmlReader xmlReader = new XmlTextReader(source);
      MemoryStream destination = new MemoryStream();

      byte[] destinationBytes = null;
      try
      {
        XslTransform.Transform(xmlReader, null, destination);
        destinationBytes = destination.ToArray();
      }
      finally
      {
        destination.Close();
        xmlReader.Close();
        source.Close();
      }

      return destinationBytes;
    }

    #region IDisposable Members
    public void Dispose()
    {
      Dispose(true);
      GC.SuppressFinalize(this);
    }

    private void Dispose(bool disposing)
    {
      if (_disposed)
      {
        return;
      }

      if (disposing)
      {
        // clean up managed resources
        XsltReader.Close();
      }

      // clean up unmanaged resources

      _disposed = true;
    }
    #endregion
  }
}

   
    
    
    
    
    
    
    
  














Related examples in the same category
1.Use XslCompiledTransform
2.Perform an XSL Transform
3.Read command line input and do the xml xsl translation
4.Illustrates the XslTransform classIllustrates the XslTransform class
5.XML transformation: transform XML file to HTML file
6.Perform an XSL Transformation using XML and XSL content and with some XSLT arguments
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.