Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / OperatingSystem.cs / 1 / OperatingSystem.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: OperatingSystem
**
**
** Purpose:
**
**
===========================================================*/
namespace System {
using System.Runtime.Serialization;
using System.Globalization;
using System.Security.Permissions;
using System.Runtime.InteropServices;
[ComVisible(true)]
[Serializable()] public sealed class OperatingSystem : ICloneable , ISerializable
{
private Version _version;
private PlatformID _platform;
private string _servicePack;
private string _versionString;
private OperatingSystem()
{
}
public OperatingSystem(PlatformID platform, Version version) : this(platform, version, null) {
}
internal OperatingSystem(PlatformID platform, Version version, string servicePack) {
if( platform < PlatformID.Win32S || platform > PlatformID.Unix) {
throw new ArgumentException(
String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("Arg_EnumIllegalVal"), (int)platform),
"platform");
}
if ((Object) version == null)
throw new ArgumentNullException("version");
_platform = platform;
_version = (Version) version.Clone();
_servicePack = servicePack;
}
private OperatingSystem(SerializationInfo info, StreamingContext context) {
SerializationInfoEnumerator enumerator = info.GetEnumerator();
while( enumerator.MoveNext()) {
switch( enumerator.Name) {
case "_version":
_version = (Version) info.GetValue("_version", typeof(Version));
break;
case "_platform":
_platform = (PlatformID) info.GetValue("_platform", typeof(PlatformID));
break;
case "_servicePack":
_servicePack = info.GetString("_servicePack");
break;
}
}
if (_version == null ) {
throw new SerializationException(Environment.GetResourceString("Serialization_MissField", "_version"));
}
}
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)]
public void GetObjectData(SerializationInfo info, StreamingContext context) {
if( info == null ) {
throw new ArgumentNullException("info");
}
info.AddValue("_version", _version);
info.AddValue("_platform", _platform);
info.AddValue("_servicePack", _servicePack);
}
public PlatformID Platform {
get { return _platform; }
}
public string ServicePack {
get {
if( _servicePack == null) {
return string.Empty;
}
return _servicePack;
}
}
public Version Version {
get { return _version; }
}
public Object Clone() {
return new OperatingSystem(_platform,
_version, _servicePack );
}
public override String ToString() {
return VersionString;
}
public String VersionString {
get {
if(_versionString != null) {
return _versionString;
}
String os;
if (_platform == PlatformID.Win32NT)
os = "Microsoft Windows NT ";
else if (_platform == PlatformID.Win32Windows) {
if ((_version.Major > 4) ||
((_version.Major == 4) && (_version.Minor > 0)))
os = "Microsoft Windows 98 ";
else
os = "Microsoft Windows 95 ";
}
else if (_platform == PlatformID.Win32S)
os = "Microsoft Win32S ";
else if (_platform == PlatformID.WinCE)
os = "Microsoft Windows CE ";
else
os = " ";
if( String.IsNullOrEmpty(_servicePack)) {
_versionString = os + _version.ToString();
}
else {
_versionString = os + _version.ToString(3) + " " + _servicePack;
}
return _versionString;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EndOfStreamException.cs
- InputProviderSite.cs
- WindowsFormsLinkLabel.cs
- UmAlQuraCalendar.cs
- URIFormatException.cs
- ImageBrush.cs
- DataShape.cs
- MessageDecoder.cs
- File.cs
- Help.cs
- PassportAuthentication.cs
- ObservableDictionary.cs
- TreeNodeConverter.cs
- SequenceFullException.cs
- SimpleTextLine.cs
- XmlSchemaRedefine.cs
- ObjectDataSourceStatusEventArgs.cs
- HashMembershipCondition.cs
- SimpleMailWebEventProvider.cs
- RelationshipDetailsCollection.cs
- ByteFacetDescriptionElement.cs
- Options.cs
- RawStylusActions.cs
- PixelFormat.cs
- FunctionOverloadResolver.cs
- PackUriHelper.cs
- LongTypeConverter.cs
- SqlExpander.cs
- ByteRangeDownloader.cs
- SpellerInterop.cs
- TypeEnumerableViewSchema.cs
- LineProperties.cs
- JoinSymbol.cs
- CngAlgorithmGroup.cs
- UnsafeNativeMethodsPenimc.cs
- DrawToolTipEventArgs.cs
- HttpPostLocalhostServerProtocol.cs
- FormsIdentity.cs
- CheckBox.cs
- FilterRepeater.cs
- ListMarkerSourceInfo.cs
- RemotingServices.cs
- CodeTypeDeclaration.cs
- WindowsScroll.cs
- RegistryPermission.cs
- WebPartDisplayModeCollection.cs
- Cursor.cs
- Zone.cs
- TextComposition.cs
- LookupNode.cs
- ResizingMessageFilter.cs
- StructuredTypeEmitter.cs
- ShaderRenderModeValidation.cs
- ServiceModelEnumValidator.cs
- hebrewshape.cs
- ContractInstanceProvider.cs
- PixelFormatConverter.cs
- BaseCollection.cs
- EventLogPermissionEntryCollection.cs
- XmlILModule.cs
- Page.cs
- ThreadPool.cs
- ProfileBuildProvider.cs
- KnownBoxes.cs
- DataPagerFieldCommandEventArgs.cs
- FtpCachePolicyElement.cs
- DataStorage.cs
- DataGridViewCell.cs
- SignatureDescription.cs
- MetadataItemEmitter.cs
- TimeStampChecker.cs
- OrderedEnumerableRowCollection.cs
- __FastResourceComparer.cs
- RtfFormatStack.cs
- DynamicObjectAccessor.cs
- contentDescriptor.cs
- Ops.cs
- ScriptRegistrationManager.cs
- RelatedPropertyManager.cs
- PingReply.cs
- AxisAngleRotation3D.cs
- FileFormatException.cs
- mediaeventargs.cs
- COM2PropertyPageUITypeConverter.cs
- cookieexception.cs
- OdbcErrorCollection.cs
- QueryCacheEntry.cs
- LambdaCompiler.Binary.cs
- DataGridViewCellValueEventArgs.cs
- Panel.cs
- SiteMapNodeItemEventArgs.cs
- UnhandledExceptionEventArgs.cs
- SafeCryptoHandles.cs
- COAUTHIDENTITY.cs
- EventHandlerList.cs
- DataPager.cs
- remotingproxy.cs
- X509Utils.cs
- TypeDescriptionProvider.cs
- TypeGeneratedEventArgs.cs