Package | Description |
---|---|
System.IO | |
System.IO.IsolatedStorage |
Modifier and Type | Method and Description |
---|---|
static FileMode |
FileMode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileMode[] |
FileMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
FileStream(java.lang.String path,
FileMode mode)
When it is called by trusted applications, initializes a new instance of the System.IO.FileStream class with the specified path and creation mode.
|
FileStream(java.lang.String path,
FileMode mode,
java.util.EnumSet<FileAccess> access)
When it is called by trusted applications, initializes a new instance of the System.IO.FileStream class with the specified path, creation mode, and read/write permission.
|
FileStream(java.lang.String path,
FileMode mode,
java.util.EnumSet<FileAccess> access,
java.util.EnumSet<FileShare> share) |
FileStream(java.lang.String path,
FileMode mode,
java.util.EnumSet<FileAccess> access,
java.util.EnumSet<FileShare> share,
int bufferSize) |
Modifier and Type | Method and Description |
---|---|
IsolatedStorageFileStream |
IsolatedStorageFile.OpenFile(java.lang.String path,
FileMode mode) |
Constructor and Description |
---|
IsolatedStorageFileStream(java.lang.String path,
FileMode mode,
java.util.EnumSet<FileAccess> access,
java.util.EnumSet<FileShare> share,
IsolatedStorageFile isf) |
IsolatedStorageFileStream(java.lang.String path,
FileMode mode,
java.util.EnumSet<FileAccess> access,
IsolatedStorageFile isf) |
IsolatedStorageFileStream(java.lang.String path,
FileMode mode,
IsolatedStorageFile isf)
Initializes a new instance of the System.IO.IsolatedStorage.IsolatedStorageFileStream class giving access to the file designated by path, in the specified mode, and in the context of the System.IO.IsolatedStorage.IsolatedStorageFile specified by isf.
|