~ubuntu-branches/ubuntu/karmic/moon/karmic

« back to all changes in this revision

Viewing changes to class/System.Windows/System.Windows.Media.Imaging/RenderTargetBitmap.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-14 12:01:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090214120108-06539vb25vhbd8bn
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * RenderTargetBitmap.cs.
 
3
 *
 
4
 * Contact:
 
5
 *   Moonlight List (moonlight-list@lists.ximian.com)
 
6
 *
 
7
 * Copyright 2008 Novell, Inc. (http://www.novell.com)
 
8
 *
 
9
 * See the LICENSE file included with the distribution for details.
 
10
 * 
 
11
 */
 
12
 
 
13
using System;
 
14
using System.Security;
 
15
using System.Windows.Shapes;
 
16
 
 
17
namespace System.Windows.Media.Imaging
 
18
{
 
19
        public sealed class RenderTargetBitmap
 
20
        {
 
21
                [SecurityCritical ()]
 
22
                public RenderTargetBitmap (int width, int height, IntPtr bitmap)
 
23
                {
 
24
                        throw new NotImplementedException ();
 
25
                }
 
26
 
 
27
                [SecuritySafeCritical ()]
 
28
                public Rect? Render (UIElement visual)
 
29
                {
 
30
                        throw new NotImplementedException ();
 
31
                }
 
32
 
 
33
        }
 
34
}