home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Active 2010 August
/
CA08.iso
/
Multimedija
/
shufflr.air
/
ShufflrClient.swf
/
scripts
/
air
/
update
/
utils
/
NetUtils.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2010-06-23
|
446 b
|
23 lines
package air.update.utils
{
public class NetUtils
{
public static const ACCEPTABLE_STATUSES:Array = [0,200];
public function NetUtils()
{
super();
}
public static function isHTTPStatusAcceptable(param1:int) : Boolean
{
if(ACCEPTABLE_STATUSES.indexOf(param1) == -1)
{
return false;
}
return true;
}
}
}