Cairo.Pattern.Pattern C# (CSharp) Метод

Pattern() приватный Метод

private Pattern ( IntPtr handle, bool owned ) : System
handle System.IntPtr
owned bool
Результат System
        internal Pattern(IntPtr handle, bool owned)
        {
            if (handle == IntPtr.Zero)
                throw new ArgumentException ("handle should not be NULL", "handle");

            Handle = handle;
            if (!owned)
                NativeMethods.cairo_pattern_reference (handle);
            if (CairoDebug.Enabled)
                CairoDebug.OnAllocated (handle);
        }