Axiom.Plugins.DevILCodecs.PNGCodec.Decode C# (CSharp) Méthode

Decode() public méthode

Passthrough implementation, no special code needed.
public Decode ( System input, System output ) : object
input System
output System
Résultat object
		public override object Decode( System.IO.Stream input, System.IO.Stream output, params object[] args )
		{
			// nothing special needed, just pass through
			return base.Decode( input, output, args );
		}