예제 #1
0
 public static NSObject Deserialize(NSData data, NSJsonReadingOptions opt, NSError error)
 {
     return(Deserialize(data, opt, out error));
 }
예제 #2
0
 protected override void Dispose(bool disposing)
 {
     source = null;
     base.Dispose(disposing);
 }
예제 #3
0
 public UnmanagedMemoryStreamWithMutableRef(NSData source) : base(source)
 {
     base_address = source.Bytes;
     this.source  = source;
 }
예제 #4
0
 public UnmanagedMemoryStreamWithRef(NSData source) : base((byte *)source.Bytes, (long)source.Length)
 {
     this.source = source;
 }
예제 #5
0
 public NSAttributedString(NSData data, ref NSError error)
     : this(data, (NSDictionary)null, out ignore, ref error)
 {
 }
예제 #6
0
 public NSAttributedString(NSData data, NSAttributedStringDocumentAttributes documentAttributes, ref NSError error)
     : this(data, documentAttributes, out ignore, ref error)
 {
 }