C# Class Open.TestHarness.Model.Network

Common access to network resources.
ファイルを表示 Open project: philcockfield/Open.TestHarness.SL

Public Methods

Method Description
DownloadXapFile ( string xapFileName, Action callback ) : void

Downloads the specified XAP file.

GetClientBin ( Action returnValue, Action error ) : void

Starts an asyncronous call to get the client-bin contents.

Private Methods

Method Description
ToXapFileCollection ( string rawXml ) : List

Method Details

DownloadXapFile() public static method

Downloads the specified XAP file.
public static DownloadXapFile ( string xapFileName, Action callback ) : void
xapFileName string The name of the XAP file to download.
callback Action Action to invoke when complete (passes back the entry-point assembly).
return void

GetClientBin() public static method

Starts an asyncronous call to get the client-bin contents.
public static GetClientBin ( Action returnValue, Action error ) : void
returnValue Action Callback that returns the values.
error Action Callback that is invoked when an error occurs.
return void