[uikit] Implement feedback from review

This commit is contained in:
Miguel de Icaza 2016-06-14 23:35:05 -07:00
Родитель 50458be3af
Коммит ae3532f38c
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -5181,7 +5181,7 @@ namespace XamCore.UIKit {
{ {
[Static] [Static]
[Export ("defaultFormat")] [Export ("defaultFormat")]
UIGraphicsRendererFormat DefaultFormat (); UIGraphicsRendererFormat DefaultFormat { get; }
[Export ("bounds")] [Export ("bounds")]
CGRect Bounds { get; } CGRect Bounds { get; }
@ -5192,7 +5192,7 @@ namespace XamCore.UIKit {
interface UIGraphicsRendererContext interface UIGraphicsRendererContext
{ {
[Export ("CGContext")] [Export ("CGContext")]
unsafe CGContext CGContext { get; } CGContext CGContext { get; }
[Export ("format")] [Export ("format")]
UIGraphicsRendererFormat Format { get; } UIGraphicsRendererFormat Format { get; }
@ -5308,13 +5308,13 @@ namespace XamCore.UIKit {
void BeginPage (CGRect bounds, NSDictionary<NSString, NSObject> pageInfo); void BeginPage (CGRect bounds, NSDictionary<NSString, NSObject> pageInfo);
[Export ("setURL:forRect:")] [Export ("setURL:forRect:")]
void SetURL (NSUrl url, CGRect rect); void SetUrl (NSUrl url, CGRect rect);
[Export ("addDestinationWithName:atPoint:")] [Export ("addDestinationWithName:atPoint:")]
void AddDestinationWithName (string name, CGPoint point); void AddDestination (string name, CGPoint point);
[Export ("setDestinationWithName:forRect:")] [Export ("setDestinationWithName:forRect:")]
void SetDestinationWithName (string name, CGRect rect); void SetDestination (string name, CGRect rect);
} }