C# Class PRI.ProductivityExtensions.IsolatedStorageFileStreamExtensions.IsolatedStorageFileStreamable

Class that contains extension methods that extend IsolatedStorageFileStream
Afficher le fichier Open project: peteraritchie/ProductivityExtensions

Méthodes publiques

Méthode Description
BeginRead ( this isolatedstoragefilestream, Byte buffer, AsyncCallback userCallback ) : IAsyncResult

Extends BeginRead so that buffer offset of 0 and call to Array.Length are not needed. isolatedstoragefilestream.BeginRead(buffer, userCallback);

BeginRead ( this isolatedstoragefilestream, Byte buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback ) : IAsyncResult

Extends BeginRead so that when a state object is not needed, null does not need to be passed. isolatedstoragefilestream.BeginRead(buffer, offset, numBytes, userCallback);

BeginWrite ( this isolatedstoragefilestream, Byte buffer, AsyncCallback userCallback ) : IAsyncResult

Extends BeginWrite so that buffer offset of 0 and call to Array.Length are not needed. isolatedstoragefilestream.BeginWrite(buffer, userCallback);

BeginWrite ( this isolatedstoragefilestream, Byte buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback ) : IAsyncResult

Extends BeginWrite so that when a state object is not needed, null does not need to be passed. isolatedstoragefilestream.BeginWrite(buffer, offset, numBytes, userCallback);

Method Details

BeginRead() public static méthode

Extends BeginRead so that buffer offset of 0 and call to Array.Length are not needed. isolatedstoragefilestream.BeginRead(buffer, userCallback);
public static BeginRead ( this isolatedstoragefilestream, Byte buffer, AsyncCallback userCallback ) : IAsyncResult
isolatedstoragefilestream this
buffer Byte
userCallback AsyncCallback
Résultat IAsyncResult

BeginRead() public static méthode

Extends BeginRead so that when a state object is not needed, null does not need to be passed. isolatedstoragefilestream.BeginRead(buffer, offset, numBytes, userCallback);
public static BeginRead ( this isolatedstoragefilestream, Byte buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback ) : IAsyncResult
isolatedstoragefilestream this
buffer Byte
offset System.Int32
numBytes System.Int32
userCallback AsyncCallback
Résultat IAsyncResult

BeginWrite() public static méthode

Extends BeginWrite so that buffer offset of 0 and call to Array.Length are not needed. isolatedstoragefilestream.BeginWrite(buffer, userCallback);
public static BeginWrite ( this isolatedstoragefilestream, Byte buffer, AsyncCallback userCallback ) : IAsyncResult
isolatedstoragefilestream this
buffer Byte
userCallback AsyncCallback
Résultat IAsyncResult

BeginWrite() public static méthode

Extends BeginWrite so that when a state object is not needed, null does not need to be passed. isolatedstoragefilestream.BeginWrite(buffer, offset, numBytes, userCallback);
public static BeginWrite ( this isolatedstoragefilestream, Byte buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback ) : IAsyncResult
isolatedstoragefilestream this
buffer Byte
offset System.Int32
numBytes System.Int32
userCallback AsyncCallback
Résultat IAsyncResult