MonobjcMonobjc Documented Class Library
WriteSafelyToURLOfTypeForSaveOperationError Method (absoluteURL, typeName, saveOperation, outError)
NamespacesMonobjc.AppKitNSDocumentWriteSafelyToURLOfTypeForSaveOperationError(NSURL, NSString, NSSaveOperationType, NSError%)

Writes the contents of the document to a file or file package located by a URL.

Original signature is '- (BOOL)writeSafelyToURL:(NSURL *)absoluteURL ofType:(NSString *)typeName forSaveOperation:(NSSaveOperationType)saveOperation error:(NSError **)outError'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool WriteSafelyToURLOfTypeForSaveOperationError(
	NSURL absoluteURL,
	NSString typeName,
	NSSaveOperationType saveOperation,
	out NSError outError
)
Public Overridable Function WriteSafelyToURLOfTypeForSaveOperationError ( _
	absoluteURL As NSURL, _
	typeName As NSString, _
	saveOperation As NSSaveOperationType, _
	<OutAttribute> ByRef outError As NSError _
) As Boolean
public:
virtual bool WriteSafelyToURLOfTypeForSaveOperationError(
	NSURL^ absoluteURL, 
	NSString^ typeName, 
	NSSaveOperationType saveOperation, 
	[OutAttribute] NSError^% outError
)
Parameters
absoluteURL (NSURL)
The location to which the document contents are written.
typeName (NSString)
The string that identifies the document type.
saveOperation (NSSaveOperationType)
The type of save operation.
outError (NSError%)
On return, If the document contents could not be written, a pointer to an error object that encapsulates the reason they could not be written.
Return Value
YES if the document contents could be written; otherwise, NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)