﻿<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>Microsoft.SPOT.Native</assembly>
  <members>
    <member name="T:Microsoft.SPOT.Cryptography.Key">
      <summary>Constitutes the base class that you use to create and work with basic encryption keys.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key.Encrypt(System.Byte[],System.Int32,System.Int32,System.Byte[])">
      <summary>Encrypts data in a specified byte array, starting at a specified offset and encrypting a specified amount of data.</summary>
      <returns>The specified byte array containing encrypted data.</returns>
      <param name="data">The byte array that contains the data to be encrypted.</param>
      <param name="offset">An offset into the specified byte array, locating the start of the data to be encrypted.</param>
      <param name="count">The number of bytes of data to be encrypted, starting from the specified offset.</param>
      <param name="IV">The initialization vector. You use this parameter to encrypt the first block of data in a cipher block chain.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key.Decrypt(System.Byte[],System.Int32,System.Int32,System.Byte[])">
      <summary>Decrypts data in a specified byte array, starting at a specified offset and decrypting a specified amount of data.</summary>
      <returns>The specified byte array containing decrypted data.</returns>
      <param name="data">The byte array that contains the data to be decrypted.</param>
      <param name="offset">An offset into the specified byte array, locating the start of the data to be decrypted.</param>
      <param name="count">The number of bytes of data to be decrypted, starting from the specified offset.</param>
      <param name="IV">The initialization vector. You use this parameter to decrypt the first block of data in a cipher block chain.</param>
    </member>
    <member name="P:Microsoft.SPOT.Cryptography.Key.Signature">
      <summary>Gets the signature associated with the current key.</summary>
      <returns>The signature associated with the current key.</returns>
    </member>
    <member name="T:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm">
      <summary>Performs simple symmetric encryption and decryption of data, using the Extended Tiny Encryption Algorithm (XTEA) in the cipher-block chaining (CBC) mode with ciphertext stealing.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.Encrypt(System.Byte[],System.Int32,System.Int32,System.Byte[])">
      <summary>Encrypts data in a specified byte array, starting at a specified offset and encrypting a specified amount of data. </summary>
      <returns>The specified byte array containing encrypted data.</returns>
      <param name="data">The byte array that contains the data to be encrypted.</param>
      <param name="offset">An offset into the specified byte array, locating the start of the data to be encrypted.</param>
      <param name="count">The number of bytes of data to be encrypted, starting from the specified offset.</param>
      <param name="IV">The initialization vector. You use this parameter to encrypt the first block of data in a cipher block chain.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.Decrypt(System.Byte[],System.Int32,System.Int32,System.Byte[])">
      <summary>Decrypts data in a specified byte array, starting at a specified offset and decrypting a specified amount of data.</summary>
      <returns>The specified byte array containing decrypted data.</returns>
      <param name="data">The byte array that contains the data to be decrypted.</param>
      <param name="offset">An offset into the specified byte array, locating the start of the data to be decrypted.</param>
      <param name="count">The number of bytes of data to be decrypted, starting from the specified offset.</param>
      <param name="IV">The initialization vector. You use this parameter to decrypt the first block of data in a cipher block chain.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.GetActivationString(System.UInt16,System.UInt16)">
      <summary>Returns a string that represents the system indentifier.</summary>
      <returns>A string that represents the system indentifier.</returns>
      <param name="region">The current region number.</param>
      <param name="model">The hardware number or system model number, or both.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.#ctor(System.Byte[])">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm" /> class with the specified key data.</summary>
      <param name="val">The encryption key data.</param>
    </member>
    <member name="F:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.c_SizeOfKey">
      <summary>Specifies the size of the current encryption key, in bytes.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.c_SizeOfSignature">
      <summary>Specifies the size of the signature for the current encryption key, in bytes. </summary>
    </member>
    <member name="P:Microsoft.SPOT.Cryptography.Key_TinyEncryptionAlgorithm.Signature">
      <summary>Gets the signature associated with the current encryption key.</summary>
      <returns>The signature associated with the current encryption key.</returns>
    </member>
    <member name="T:Microsoft.SPOT.Cryptography.Key_RSA">
      <summary>Performs asymmetric encryption and decryption of data, using the RSA algorithm.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_RSA.Encrypt(System.Byte[],System.Int32,System.Int32,System.Byte[])">
      <summary>Encrypts data from a specified byte array, starting at a specified offset and encrypting a specified amount of data.</summary>
      <returns>The specified byte array containing encrypted data.</returns>
      <param name="data">The byte array that contains the data to be encrypted.</param>
      <param name="offset">The offset into the specified byte array, locating the start of the data to be encrypted.</param>
      <param name="count">The number of bytes of data to be encrypted, starting from the specified offset.</param>
      <param name="IV">The initialization vector. You use this parameter to encrypt the first block of data in a cipher block chain.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_RSA.Decrypt(System.Byte[],System.Int32,System.Int32,System.Byte[])">
      <summary>Decrypts data from a specified byte array, starting at a specified offset and decrypting a specified amount of data.</summary>
      <returns>The specified byte array containing decrypted data.</returns>
      <param name="data">The byte array that contains the data to be decrypted.</param>
      <param name="offset">The offset into the specified byte array, locating the start of the data to be decrypted.</param>
      <param name="count">The number of bytes of data to be decrypted, starting from the specified offset.</param>
      <param name="IV">The initialization vector. You use this parameter to decrypt the first block of data in a cipher block chain.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_RSA.VerifySignature(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)">
      <summary>Verifies the specified signature data by comparing it with the signature computed for the specified signed data.</summary>
      <returns>true if the signature was verified as valid; otherwise, false.</returns>
      <param name="data">The signed data you want to compare the specified signature with.</param>
      <param name="dataOffset">The offset into the specified data array, locating the start of the data to be verified.</param>
      <param name="dataCount">The length of the data to be compared, in bytes.</param>
      <param name="sig">The signature data to be verified.</param>
      <param name="sigOffset">The offset into the signature data array, locating the start of the signature.</param>
      <param name="sigCount">The length of the specified signature, in bytes.</param>
    </member>
    <member name="M:Microsoft.SPOT.Cryptography.Key_RSA.#ctor(System.Byte[],System.Byte[])">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SPOT.Cryptography.Key_RSA" /> class.</summary>
      <param name="modulus">The modulus parameter for the RSA algorithm key.</param>
      <param name="exponent">The exponent parameter for the RSA algorithm key.</param>
    </member>
    <member name="F:Microsoft.SPOT.Cryptography.Key_RSA.c_SizeOfKey">
      <summary>Specifies the size of the current encryption key, in bytes.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Cryptography.Key_RSA.c_SizeOfSignature">
      <summary>Specifies the size of the signature for the current encryption key, in bytes.</summary>
    </member>
    <member name="P:Microsoft.SPOT.Cryptography.Key_RSA.Signature">
      <summary>Gets the signature associated with the current key.</summary>
      <returns>The signature associated with the current key.</returns>
    </member>
    <member name="T:Microsoft.SPOT.Trace">
      <summary>Not documented yet.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Trace.Print(System.String)">
      <summary>Not documented yet.</summary>
      <param name="text">Not documented yet.</param>
    </member>
    <member name="T:Microsoft.SPOT.Debug">
      <summary>Provides a set of methods and properties that help you debug your code.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Debug.Print(System.String)">
      <summary>Prints a message (followed by the current line terminator) to the standard output stream.</summary>
      <param name="text">The message to be printed to the standard output stream.</param>
    </member>
    <member name="M:Microsoft.SPOT.Debug.GC(System.Boolean)">
      <summary>Runs garbage collection, a service that automatically reclaims unused computer memory.</summary>
      <returns>The amount of free (unused) memory, in bytes.</returns>
      <param name="force">A Boolean value that specifies whether garbage collection should be forced.</param>
    </member>
    <member name="M:Microsoft.SPOT.Debug.DumpHeap">
      <summary>Prints all available heap information to the standard output stream.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Debug.DumpStack">
      <summary>Prints all available stack information to the standard output stream.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Debug.DumpPerfCounters">
      <summary>Prints performance counter information to the standard output stream.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Debug.DumpBuffer(System.Byte[],System.Boolean,System.Boolean)">
      <summary>Prints the data for a specified buffer to the standard output stream.</summary>
      <param name="buf">An array containing the bytes of buffer data.</param>
      <param name="fCRC">A Boolean value that specifies whether to compute and print the cyclic redundancy check (CRC) for each row of data.</param>
      <param name="fOffset">A Boolean value that specifies whether to print the memory offset address for each row of data.</param>
    </member>
    <member name="M:Microsoft.SPOT.Debug.Assert(System.Boolean)">
      <summary>Causes a break in execution if the specified assertion (condition) evaluates to true.</summary>
      <param name="condition">The condition to be evaluated. If the return value is true, program execution stops.</param>
    </member>
    <member name="M:Microsoft.SPOT.Debug.Assert(System.Boolean,System.String)">
      <summary>Causes a break in execution if the specified assertion (condition) evaluates to true.</summary>
      <param name="condition">The condition to be evaluated. If the return value is true, program execution stops.</param>
      <param name="message">The text to be displayed if the assertion is true.</param>
    </member>
    <member name="M:Microsoft.SPOT.Debug.Assert(System.Boolean,System.String,System.String)">
      <summary>Causes a break in execution if the specified assertion (condition) evaluates to true.</summary>
      <param name="condition">The condition to be evaluated. If the return value is true, program execution stops.</param>
      <param name="message">The text to be displayed if the assertion is true.</param>
      <param name="detailedMessage">The detailed message to be displayed if the assertion is true.</param>
    </member>
    <member name="T:Microsoft.SPOT.WeakDelegate">
      <summary>Provides methods for combining and removing "weak" delegates.</summary>
      <remarks>This class cannot be inherited.
        When instances of the <see cref="T:Microsoft.SPOT.WeakDelegate" /> class are created, the object references in the delegate list are treated like <see cref="T:Microsoft.SPOT.WeakDelegate" /> objects. This means that these object references are prone to garbage collection even if they are still targets in the list of delegates. When such object references are collected as garbage, they are automatically removed from the list of delegates.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.WeakDelegate.Combine(System.Delegate,System.Delegate)">
      <summary>Concatenates the invocation lists of two multicast (combinable) delegates.</summary>
      <returns>A new combinable delegate with an invocation list that concatenates the invocation lists of the a and b parameters, in that order. If b is a null reference, this method returns a. If a is a null reference, this method returns b. If both a and b are null references, this method returns null.</returns>
      <param name="a">The combinable delegate whose invocation list comes first.</param>
      <param name="b">The combinable delegate whose invocation list comes second.</param>
    </member>
    <member name="M:Microsoft.SPOT.WeakDelegate.Remove(System.Delegate,System.Delegate)">
      <summary>Removes the invocation list of a specified delegate from the invocation list of another specified delegate.</summary>
      <returns>A new delegate with an invocation list formed by taking the invocation list of the a parameter and removing the invocation list of the b parameter, if b's invocation list is found in a's invocation list. If b is a null reference, or if b's invocation list is not found in a's invocation list, this method returns a. If b's invocation list is equal to a's invocation list, or if b is a null reference, this method returns null.</returns>
      <param name="a">The delegate from which you want to remove the invocation list.</param>
      <param name="b">The delegate that supplies the invocation list you want to remove from the delegate specified in a.</param>
    </member>
    <member name="M:Microsoft.SPOT.WeakDelegate.#ctor">
      <summary>Creates and initializes an instance of the <see cref="T:Microsoft.SPOT.WeakDelegate" /> class.</summary>
    </member>
    <member name="T:Microsoft.SPOT.ConstraintException">
      <summary>The exception that is thrown when an action is attempted that violates a constraint.</summary>
      <remarks>When a ConstraintException exception is caught, if the <see cref="T:Microsoft.SPOT.ExecutionConstraint" /> object that caused this exception has not been uninstalled, the catch block implementation has a small additional amount of time during which to handle the exception. If this takes too long, the exception is rethrown automatically. </remarks>
    </member>
    <member name="M:Microsoft.SPOT.ConstraintException.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="T:Microsoft.SPOT.ExecutionConstraint">
      <summary>Provides a method you can use to require a thread to complete an operation within specific constraints.</summary>
    </member>
    <member name="M:Microsoft.SPOT.ExecutionConstraint.Install(System.Int32,System.Int32)">
      <summary>Creates a subthread within the calling thread, containing a constraint that requires the calling thread to complete an operation within a specified time period and at a specified priority level.</summary>
      <param name="timeout">The number of clock ticks before a ConstraintException exception is thrown. Note that the value -1 in this parameter indicates that the current constraint exception is to be uninstalled.</param>
      <param name="priority">The priority level of the calling thread.</param>
      <remarks>If the specified time period expires before the thread has completed the operation, a ConstraintException exception is thrown. Note that the time you set in the timeout parameter is standard clock time, not thread execution time.
        You can raise the priority level only for threads that already have a priority level higher than 0 (zero).
      </remarks>
      <exception cref="T:System.Exception">The timeout parameter is less than -1.</exception>
      <exception cref="T:System.Exception">The system is unable to identify the thread that is installing this constraint.</exception>
      <exception cref="T:System.Exception">The thread installing this contraint does not own the subthread that the constraint applies to.</exception>
    </member>
    <member name="M:Microsoft.SPOT.ExecutionConstraint.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Hardware.SystemID">
      <summary>Stores information that is unique to each individual hardware system (device).</summary>
      <remarks>You can use this information to write conditional code that is dependent on a specific runtime environment.</remarks>
    </member>
    <member name="P:Microsoft.SPOT.Hardware.SystemID.OEM">
      <summary>Gets a value that represents an original equipment manufacturer (OEM).</summary>
      <returns>A value that represents an OEM.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Hardware.SystemID.Model">
      <summary>Gets a value that represents a product model.</summary>
      <returns>A value that represents a product model.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Hardware.SystemID.SKU">
      <summary>Gets a value that represents a product's stock-keeping unit (SKU).</summary>
      <returns>A value that represents a product's SKU.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Hardware.SystemID.NetworkID">
      <summary>Gets a value that represents a product network identifier (ID).</summary>
      <returns>A value that represents a product network ID.</returns>
    </member>
    <member name="T:Microsoft.SPOT.Hardware.Utility">
      <summary>Provides a collection of helper functions you can use to configure settings for security, collections, driver manipulation, time, and idle CPU usage.</summary>
      <remarks>This class cannot be inherited.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.ComputeCRC(System.Byte[],System.Int32,System.Int32,System.UInt32)">
      <summary>Computes a cyclic redundancy check (CRC) from the specified byte array buffer.</summary>
      <returns>A CRC value.</returns>
      <param name="buf">A buffer of data from which the CRC is computed.</param>
      <param name="offset">The offset from the beginning of the specified array to the beginning of the data to be checked.</param>
      <param name="length">The number of bytes of data to be checked, starting from the offset. The value -1 indicates that all data in the buffer starting from the offset is to be checked.</param>
      <param name="crc">A seed for the CRC calculation.</param>
      <remarks>This method uses the IEEE 802.3 CRC-32 Zmodem protocol to compute the CRC.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.DecodeRS(System.Byte[],System.Int32)">
      <summary>Decodes a Reed Solomon (RS) encoded byte array.</summary>
      <returns>The number of decode errors.</returns>
      <param name="buf">A Reed-Solomon encoded byte array.</param>
      <param name="parityBytes">The number of parity bytes contained in the buffer.</param>
      <remarks>The parity bytes are at the end of the buffer.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.ExtractValueFromArray(System.Byte[],System.Int32,System.Int32)">
      <summary>Extracts a value from a byte array, using the specified position and size of the data objects in the array.</summary>
      <returns>The value extracted from the byte array.</returns>
      <param name="data">The array of data from which you want to extract a value.</param>
      <param name="pos">The position of the data you want to extract from the array.</param>
      <param name="size">The size of the data objects you want to extract from the the array, in bytes. Valid arguments for this parameter are 1, 2, and 4.</param>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.InsertValueIntoArray(System.Byte[],System.Int32,System.Int32,System.UInt32)">
      <summary>Inserts a value at a specified position in a byte array.</summary>
      <param name="data">The array into which you want to insert the specified value.</param>
      <param name="pos">The position in the array where you want to insert the specified value.</param>
      <param name="size">The size of the data objects contained in the array, in bytes. Valid arguments for this parameter are 1, 2, and 4.</param>
      <param name="val">The value you want to insert into the array.</param>
      <remarks>This method overwrites existing data in the array.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.ExtractRangeFromArray(System.Byte[],System.Int32,System.Int32)">
      <summary>Extracts a linear section of data from a byte array.</summary>
      <returns>The byte array that contains the extracted data.</returns>
      <param name="data">The byte array of data.</param>
      <param name="offset">The offset from the beginning of the byte array to the target data.</param>
      <param name="count">The amount of data you want to extract, in bytes.</param>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.CombineArrays(System.Byte[],System.Byte[])">
      <summary>Combines all of the data fom two arrays of bytes into one array.</summary>
      <returns>A new array of bytes that contains two specified arrays.</returns>
      <param name="src1">The first array you want to combine with another array.</param>
      <param name="src2">The second array you want to combine with another array.</param>
      <remarks>This method combines two arrays by appending the second array at the end of the first array.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.CombineArrays(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)">
      <summary>Combines ranges of data from two arrays of bytes into one array.</summary>
      <returns>A new array of bytes that contains the specified ranges of data from two specified arrays.</returns>
      <param name="src1">The first array whose data you want to combine with data from another array.</param>
      <param name="offset1">The offset from the beginning of the first array to the target data.</param>
      <param name="count1">The amount of data you want to extract from the first array, in bytes.</param>
      <param name="src2">The second array whose data you want to combine with data from another array.</param>
      <param name="offset2">The offset from the beginning of the second array to the target data.</param>
      <param name="count2">The amount of data you want to extract from the second array, in bytes.</param>
      <remarks>This method combines data from two arrays by inserting the specified data from the second array after the specified data from the first array.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.SetLocalTime(System.DateTime)">
      <summary>Sets the system to the local time.</summary>
      <param name="dt">The new (local) date and time.</param>
      <remarks>This method only sets the local time. It does not set the <see cref="M:Microsoft.SPOT.Hardware.Utility.GetMachine">machine time.</see></remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.GetMachineTime">
      <summary>Gets the machine time (system time).</summary>
      <returns>The system time.</returns>
      <remarks>The system time is a time span specifying how much time has elapsed since the last reboot.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.GetLastBootTime">
      <summary>Gets the time of the last system boot.</summary>
      <returns>The time of the last system boot.</returns>
      <remarks>This method returns the number of system clock ticks that have occurred since the last time the device booted.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.Piezo(System.UInt32,System.UInt32)">
      <summary>Causes a sound to be emitted from the piezo speaker.</summary>
      <param name="frequency">The frequency of the sound that is emitted, in hertz (Hz).</param>
      <param name="duration">The duration of the sound that is emitted, in milliseconds (ms).</param>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.Backlight(System.Boolean)">
      <summary>Controls the backlight hardware feature.</summary>
      <param name="fStatus">A value that turns the backlight on (true) or off (false).</param>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.IsFeaturePresent(System.String)">
      <summary>Queries the system to see whether a specified hardware feature is available.</summary>
      <returns>true if the specified feature is available; otherwise, false.</returns>
      <param name="featureId">The unique string (ID) that identifies the feature you want the system to check for.</param>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.QueryDriver(System.String,System.String,System.Object[])">
      <summary>Invokes driver methods through a lookup table of driver commands.</summary>
      <returns>The return value from the invoked driver method, in object format.</returns>
      <param name="driverId">A string that represents a driver indentifier (ID).</param>
      <param name="commandId">A string that represents a command indentifier (ID).</param>
      <param name="values">An array of objects to be passed as arguments to the command.</param>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.HibernateSystem">
      <summary>Places the system in hibernation mode.</summary>
      <remarks>An application should attempt to release as many resources as possible before going into hibernation mode. It does this by releasing user interface elements, turning off unnecessary peripherals, or freeing up as much local storage as possible without changing the internal state.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.Utility.WaitForIdleCPU(System.Int32,System.Int32)">
      <summary>Pauses execution of a program and waits for the CPU to become idle.</summary>
      <returns>true if the CPU becomes idle within the time-out period; otherwise, false.</returns>
      <param name="expectedWorkItemDuration">The expected amount of time, in clock ticks, for the work item you call this method for to be completed.</param>
      <param name="timeout">The amount of time you want the system to wait for an idle CPU, in clock ticks.</param>
      <remarks>You should call this method for applications that have low-priority tasks that can be processed in the background when the CPU becomes idle. For example, you might use this method for a program requiring non-time-critical information that it downloads through a network connection.</remarks>
    </member>
    <member name="T:Microsoft.SPOT.Logging">
      <summary>Provides methods and properties for managing logged data.</summary>
      <remarks>This class cannot be inherited.
        The use of this class is currently not supported and is not recommended.
      </remarks>
    </member>
    <member name="M:Microsoft.SPOT.Logging.Erase">
      <summary>Erases all <see cref="T:Microsoft.SPOT.Logging" /> objects (log records).</summary>
    </member>
    <member name="M:Microsoft.SPOT.Logging.AppendRecord(System.Object)">
      <summary>Adds a <see cref="T:Microsoft.SPOT.Logging" /> object (log record) at the end of the list of log records.</summary>
      <param name="o">The log record you want to add at the end of the list.</param>
      <remarks>When the flash sectors in which the log is stored are full, this method deletes and replaces the oldest data.
        The use of this class is currently not supported and is not recommended.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Logging.GetRecord(System.Int32)">
      <summary>Gets a <see cref="T:Microsoft.SPOT.Logging" /> object (log record) from the zero-based list of log records. </summary>
      <returns>A log record.</returns>
      <param name="i">The index number of the log record you want to retrieve.</param>
      <remarks>The use of this class is currently not supported and is not recommended.</remarks>
    </member>
    <member name="P:Microsoft.SPOT.Logging.NumberOfRecords">
      <summary>Gets the number of <see cref="T:Microsoft.SPOT.Logging" /> objects (log records) in the current list of records.</summary>
      <returns>The number of log records in the current list of records.</returns>
      <remarks>The use of this class is currently not supported and is not recommended.</remarks>
    </member>
    <member name="T:Microsoft.SPOT.Math">
      <summary>Provides static methods for common mathematical functions.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Math.Cos(System.Int32)">
      <summary>Gets the cosine of the specified angle.</summary>
      <returns>The cosine of the specified angle, multiplied by 1000.</returns>
      <param name="angle">An angle, measured in degrees.</param>
    </member>
    <member name="M:Microsoft.SPOT.Math.Sin(System.Int32)">
      <summary>Gets the sine of the specified angle.</summary>
      <returns>The sine of the specified angle, multiplied by 1000.</returns>
      <param name="angle">An angle, measured in degrees.</param>
    </member>
    <member name="M:Microsoft.SPOT.Math.Randomize">
      <summary>Sets a random starting point for random number generation.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Math.Random(System.Int32)">
      <summary>Generates a pseudorandom number.</summary>
      <returns>A pseudorandom number.</returns>
      <param name="modulo">A modulo to apply to the pseudorandom number that is generated. Note that the generated number is greater than or equal to 0 (zero) and less than the modulo.</param>
    </member>
    <member name="T:Microsoft.SPOT.Messaging.EndPoint">
      <summary>Not documented yet.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.EndPoint.Check(System.Type,System.UInt32,System.Int32)">
      <summary>Not documented yet.</summary>
      <returns>Not documented yet.</returns>
      <param name="selector">Not documented yet.</param>
      <param name="id">Not documented yet.</param>
      <param name="timeout">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.EndPoint.GetMessage(System.Int32)">
      <summary>Not documented yet.</summary>
      <returns>Not documented yet.</returns>
      <param name="timeout">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.EndPoint.SendMessageRaw(System.Type,System.UInt32,System.Int32,System.Byte[])">
      <summary>Not documented yet.</summary>
      <returns>Not documented yet.</returns>
      <param name="selector">Not documented yet.</param>
      <param name="id">Not documented yet.</param>
      <param name="timeout">Not documented yet.</param>
      <param name="payload">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.EndPoint.SendMessage(System.Type,System.UInt32,System.Int32,System.Object)">
      <summary>Not documented yet.</summary>
      <returns>Not documented yet.</returns>
      <param name="selector">Not documented yet.</param>
      <param name="id">Not documented yet.</param>
      <param name="timeout">Not documented yet.</param>
      <param name="payload">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.EndPoint.#ctor(System.Type,System.UInt32)">
      <summary>Not documented yet.</summary>
      <param name="selector">Not documented yet.</param>
      <param name="id">Not documented yet.</param>
    </member>
    <member name="T:Microsoft.SPOT.Messaging.Message">
      <summary>Not documented yet.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.Message.Reply(System.Object)">
      <summary>Not documented yet.</summary>
      <param name="data">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.Message.ReplyRaw(System.Byte[])">
      <summary>Not documented yet.</summary>
      <param name="data">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.Message.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="P:Microsoft.SPOT.Messaging.Message.Payload">
      <summary>Not documented yet.</summary>
      <returns>Not documented yet.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Messaging.Message.PayloadRaw">
      <summary>Not documented yet.</summary>
      <returns>Not documented yet.</returns>
    </member>
    <member name="T:Microsoft.SPOT.Messaging.Message+RemotedException">
      <summary>summaryRemotedException</summary>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.Message.RemotedException.Raise">
      <summary>Not documented yet.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Messaging.Message.RemotedException.#ctor(System.Exception)">
      <summary>Not documented yet.</summary>
      <param name="payload">Not documented yet.</param>
    </member>
    <member name="F:Microsoft.SPOT.Messaging.Message.RemotedException.m_message">
      <summary>Not documented yet.</summary>
    </member>
    <member name="T:Microsoft.SPOT.SerializationFlags">
      <summary>Defines a set of flags that indicate various attributes of a serialization (serialized object).</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.Encrypted">
      <summary>A value indicating that the serialized object is encrypted. This flag is not currently implemented.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.Compressed">
      <summary>A value indicating that the serialized object is compressed. This flag is not currently implemented.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.Optional">
      <summary>A value indicating that the serialized object can be skipped if it cannot be deserialized. This flag is not currently implemented.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.PointerNeverNull">
      <summary>A value indicating that the pointer to the serialized object is never null.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.ElementsNeverNull">
      <summary>A value indicating that the elements in the serialized object are never null.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.FixedType">
      <summary>A value indicating that the serialized object can only be an instance of the specified class, and not an instance of a derived class.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationFlags.DemandTrusted">
      <summary>This flag is not currently implemented.</summary>
    </member>
    <member name="T:Microsoft.SPOT.SerializationHintsAttribute">
      <summary>Indicates that a particular serializable object has known attributes and methods of serialization.</summary>
      <remarks>Because these attributes are known, the attribute and method information will not be serialized, thus saving storage space and data transfer memory.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.SerializationHintsAttribute.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationHintsAttribute.Flags">
      <summary>Contains flags that describe the serialization of the current object.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationHintsAttribute.ArraySize">
      <summary>Specifies the size of a particular serialized array.</summary>
      <remarks>A value of -1 for the array size indicates that the array extends to the end of the stream.</remarks>
    </member>
    <member name="F:Microsoft.SPOT.SerializationHintsAttribute.BitPacked">
      <summary>Specifies the number of bits in which the current object is bit-packed.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SerializationHintsAttribute.RangeBias">
      <summary>Specifies the range bias adjustment for a particular serialized value.</summary>
      <remarks>This is the calculated middle range in which the serialized value should reside.</remarks>
    </member>
    <member name="F:Microsoft.SPOT.SerializationHintsAttribute.Scale">
      <summary>Specifies the scale adjustment for a particular serialized value.</summary>
      <remarks>For time values, this property is measured in clock ticks.</remarks>
    </member>
    <member name="T:Microsoft.SPOT.FieldNoReflectionAttribute">
      <summary>Sets a field such that there can be no reflection it.</summary>
    </member>
    <member name="M:Microsoft.SPOT.FieldNoReflectionAttribute.#ctor">
      <summary>Constructs a <see cref="T:Microsoft.SPOT.FieldNoReflectionAttribute" /> object.</summary>
    </member>
    <member name="T:Microsoft.SPOT.GloballySynchronizedAttribute">
      <summary>Indicates that a particular method is globally synchronized.</summary>
      <remarks>Applying this attribute to a method provides concurrency protection.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.GloballySynchronizedAttribute.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="T:Microsoft.SPOT.PublishInApplicationDirectoryAttribute">
      <summary>Indicates that an application should be published in its application directory.</summary>
    </member>
    <member name="M:Microsoft.SPOT.PublishInApplicationDirectoryAttribute.#ctor">
      <summary>Creates and initializes a new instance of the <see cref="T:Microsoft.SPOT.PublishInApplicationDirectoryAttribute" /> class.</summary>
    </member>
    <member name="T:Microsoft.SPOT.UnknownTypeException">
      <summary>The exception that is thown when an error occurs because of an unknown type.</summary>
    </member>
    <member name="M:Microsoft.SPOT.UnknownTypeException.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.UnknownTypeException.m_type">
      <summary>Contains a reference to the unknown type that caused the current exception.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Reflection">
      <summary>Provides information about assemblies and the types defined within them, as well as information about creating, invoking, and accessing type instances at run time.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetTypesImplementingInterface(System.Type)">
      <summary>Gets the System.Type objects (types) that implement the specified interface.</summary>
      <returns>An array of types.</returns>
      <param name="itf">The type of the interface you want to search for.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.IsTypeLoaded(System.Type)">
      <summary>Indicates whether a specified type is loaded.</summary>
      <returns>true if the specified type is loaded; otherwise, false.</returns>
      <param name="t">The type you want to check for.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetTypeHash(System.Type)">
      <summary>Gets the hash attribute for a specified type.</summary>
      <returns>The hash attribute that represents the specified type.</returns>
      <param name="t">The type you want to retrieve the hash attribute from.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetAssemblyHash(System.Reflection.Assembly)">
      <summary>Retrieves the hash attribute from a specified assembly.</summary>
      <returns>The hash attribute that represents the specified assembly.</returns>
      <param name="assm">The assembly you want to retrieve the hash attribute from.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetAssemblyLastUse(System.Reflection.Assembly)">
      <summary>Gets a System.TimeSpan value that represents the time at which the specified assembly was last used.</summary>
      <returns>The time at which the specified assembly was last used.</returns>
      <param name="assm">The specified assembly.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetAssemblyPatch(System.Reflection.Assembly)">
      <summary>Gets the assembly that is designated as a patch for the specified assembly.</summary>
      <returns>The patch assembly for the specified assembly.</returns>
      <param name="assm">The specified assembly.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetAssemblies">
      <summary>Gets all known assemblies.</summary>
      <returns>An array containing all known assemblies.</returns>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetAssemblyInfo(System.Byte[],Microsoft.SPOT.Reflection+AssemblyInfo)">
      <summary>Get an <see cref="T:Microsoft.SPOT.Reflection.AssemblyInfo" /> object from a byte array that represents a specified assembly.</summary>
      <returns>true if the AssemblyInfo object contains valid data extracted from the byte array; otherwise, false.</returns>
      <param name="assm">The byte array that represents the specified assembly.</param>
      <param name="ai">The assembly to be populated with data extracted from the byte array.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetTypeFromHash(System.UInt32)">
      <summary>Gets the type that uses the specified hash attribute.</summary>
      <returns>The type that corresponds to the specified hash attribute.</returns>
      <param name="hash">The hash attribute for the specified type.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.GetAssemblyFromHash(System.UInt32)">
      <summary>Gets the assembly with the specified hash attribute.</summary>
      <returns>The assembly with the specified hash attribute.</returns>
      <param name="hash">The hash attribute for the assembly you want to get.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.Serialize(System.Object,System.Type)">
      <summary>Serializes an object of the specified type to a byte array of data.</summary>
      <returns>A byte array containing data that represents the serialized object.</returns>
      <param name="o">The object you want to serialize.</param>
      <param name="t">The type of the object you want to serialize. This parameter can be a null reference.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.Deserialize(System.Byte[],System.Type)">
      <summary>Deserializes a byte array of data into an object of the specified type.</summary>
      <returns>The deserialized object represented by the byte array.</returns>
      <param name="v">A byte array containing data that represents the serialized object.</param>
      <param name="t">The type of the object to be deserialized. This should be a null reference if the array in the v parameter contains that type.</param>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.#ctor">
      <summary>Creates and initializes a new instance of the <see cref="T:Microsoft.SPOT.Reflection" /> class.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Reflection.AssemblyInfo">
      <summary>Defines an AssemblyInfo object (an assembly), which is a self-describing building block of a common language runtime (CLR) application.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Reflection.AssemblyInfo.#ctor">
      <summary>Creates and initializes a new instance of the <see cref="T:Microsoft.SPOT.Reflection.AssemblyInfo" /> class.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.m_name">
      <summary>Contains the name of the current assembly.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.m_flags">
      <summary>Contains flags that describe the current assembly.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.m_size">
      <summary>Specifies the size of the current assembly.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.m_hash">
      <summary>Contains the assembly hash attribute, which is a unique identifier for the current assembly.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.m_refs">
      <summary>Contains an array of references to assemblies that the current assembly is dependent on.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.c_Flags_NeedReboot">
      <summary>Contains a flag stating that after the current assembly is installed, the device must be rebooted.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Reflection.AssemblyInfo.c_Flags_Patch">
      <summary>Contains a flag stating that the current assembly is a patch for another assembly.</summary>
    </member>
    <member name="T:Microsoft.SPOT.ResourceUtility">
      <summary>Helps .NET Micro Framework applications manage resources.</summary>
    </member>
    <member name="M:Microsoft.SPOT.ResourceUtility.GetObject(System.Resources.ResourceManager,System.Enum)">
      <summary>Gets the value of a specified <see cref="T:System.Object" /> resource for the current system culture.</summary>
      <returns>Not documented yet.</returns>
      <param name="rm">Not documented yet.</param>
      <param name="id">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ResourceUtility.SetCurrentUICulture(System.Globalization.CultureInfo)">
      <summary>Sets the information for the current system culture.</summary>
      <param name="culture">The object that contains the information for the current system culture.</param>
    </member>
    <member name="M:Microsoft.SPOT.ResourceUtility.GetDelimitedStringResources(System.Resources.ResourceManager,System.Enum)">
      <summary>Retrieves the string representations of the specified resources.</summary>
      <returns>The string representations of the specified resources.</returns>
      <param name="rm">The resource manager that contains the specified resources.</param>
      <param name="resource">An enumerated value that specifies the type of the resources for which you want to get the string representations.</param>
    </member>
    <member name="M:Microsoft.SPOT.ResourceUtility.GetDelimitedStringResource(System.Resources.ResourceManager,System.Enum,System.Int32)">
      <summary>Retrieves the string representation of a specified resource.</summary>
      <returns>The string representation of the specified resource.</returns>
      <param name="rm">The resource manager that contains the specified resource.</param>
      <param name="resource">An enumerated value that indicates the type of the specified resource.</param>
      <param name="i">The index number of the resource (in the resource manager's resource collection) for which you want to get the string representation.</param>
    </member>
    <member name="M:Microsoft.SPOT.ResourceUtility.#ctor">
      <summary>Constructs a <see cref="T:Microsoft.SPOT.ResourceUtility" /> object.</summary>
    </member>
    <member name="T:Microsoft.SPOT.TimeZoneId">
      <summary>Provides the set of time zones that are available for .NET Micro Framework applications.</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Current">
      <summary>The current time zone ID</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Network">
      <summary>The network-provided time zone</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Dateline">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Samoa">
      <summary>Samoa</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Hawaii">
      <summary>Hawaii</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Alaska">
      <summary>Alaska</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Pacific">
      <summary>Pacific</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Arizona">
      <summary>Arizona</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Mountain">
      <summary>Mountain</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.CentAmerica">
      <summary>Central America</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Central">
      <summary>Central</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Saskatchewan">
      <summary>Saskatchewan</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.MexicoCity">
      <summary>Mexico City</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Indiana">
      <summary>Indiana</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Bogota">
      <summary>Bogota</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Eastern">
      <summary>Eastern</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Caracas">
      <summary>Caracas</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Santiago">
      <summary>Santiago</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Atlantic">
      <summary>Atlantic</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Newfoundland">
      <summary>Newfoundland</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Brasilia">
      <summary>Brasilia</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Greenland">
      <summary>Greenland</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.BuenosAires">
      <summary>Buenos Aires</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.MidAtlantic">
      <summary>Mid-Atlantic</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.CapeVerde">
      <summary>Cape Verde</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Azores">
      <summary>Azorec</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Casablanca">
      <summary>Casablana</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.GMT">
      <summary>GMT, or Greenwich Mean Time (also known as UTC, or Coordinated Universal Time)</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.London">
      <summary>London</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.WCentAfrica">
      <summary>West Central Africa</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Prague">
      <summary>Prague</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Warsaw">
      <summary>Warsaw</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Paris">
      <summary>Paris</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Berlin">
      <summary>Berlin</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Cairo">
      <summary>Cairo</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Jerusalem">
      <summary>Jerusalem</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Pretoria">
      <summary>Pretoria</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Bucharest">
      <summary>Bucharest</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Helsinki">
      <summary>Helsinki</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Athens">
      <summary>Athens</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Riyadh">
      <summary>Riyadh</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Nairobi">
      <summary>Nairobi</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Moscow">
      <summary>Moscow</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Baghdad">
      <summary>Baghdad</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Tehran">
      <summary>Tehran</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Baku">
      <summary>Baku</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Kabul">
      <summary>Kabul</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.AbuDhabi">
      <summary>Abu Dhabi</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Yekaterinburg">
      <summary>Yekaterinburg</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Islamabad">
      <summary>Islamabad</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.NewDelhi">
      <summary>New Delhi</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Kathmandu">
      <summary>Kathmandu</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Astana">
      <summary>Astana</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.SriLanka">
      <summary>Sri Lanka</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Almaty">
      <summary>Almaty</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Yangon">
      <summary>Yangon</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Bangkok">
      <summary>Bangkok</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Krasnoyarsk">
      <summary>Krasnoyarsk</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Beijing">
      <summary>Beijing</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Malaysia">
      <summary>Malayisia</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Taipei">
      <summary>Taipei</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Perth">
      <summary>Perth</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Ulaanbataar">
      <summary>Ulaanbataar</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Seoul">
      <summary>Seoul</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Tokyo">
      <summary>Tokyo</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Yakutsk">
      <summary>Yakutsk</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Darwin">
      <summary>Darwin</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Adelaide">
      <summary>Adelaide</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Sydney">
      <summary>Sydney</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Brisbane">
      <summary>Brisbane</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Hobart">
      <summary>Hobart</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Guam">
      <summary>Guam</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Vladivostok">
      <summary>Vladivostok</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Magadan">
      <summary>Magdan</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.FijiIslands">
      <summary>Fiji Islands</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.NewZealand">
      <summary>New Zealand</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.Tonga">
      <summary>Tonga</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.FIRST">
      <summary>The first time zone ID</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.LAST">
      <summary>The last time zone ID</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.COUNT">
      <summary>The total number of time zone IDs</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneId.FIRST_RESOURCE">
      <summary>The first resource string</summary>
    </member>
    <member name="T:Microsoft.SPOT.SystemTime">
      <summary>Sets or gets the current system time for the device.</summary>
    </member>
    <member name="M:Microsoft.SPOT.SystemTime.#ctor">
      <summary>Constructs a <see cref="T:Microsoft.SPOT.SystemTime" /> object.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Year">
      <summary>Specifies the year associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object. </summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Month">
      <summary>Specifies the month associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object. </summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.DayOfWeek">
      <summary>Specifies the day of the week associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object. </summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Day">
      <summary>Specifies the day associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object. </summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Hour">
      <summary>Specifies the hour associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object. </summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Minute">
      <summary>Specifies the minute associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object. </summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Second">
      <summary>Specifies the second associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object.</summary>
    </member>
    <member name="F:Microsoft.SPOT.SystemTime.Milliseconds">
      <summary>Specifies the milliseconds associated with a particular <see cref="T:Microsoft.SPOT.SystemTime" /> object.</summary>
    </member>
    <member name="T:Microsoft.SPOT.TimeZoneInformation">
      <summary>Contains information describing a specific time zone.</summary>
    </member>
    <member name="M:Microsoft.SPOT.TimeZoneInformation.#ctor">
      <summary>Constructs a <see cref="T:Microsoft.SPOT.TimeZoneInformation" /> object.</summary>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.Bias">
      <summary>Specifies the current bias for local time translation on this operating system, in minutes.</summary>
      <remarks>
        The bias is the difference, in minutes, between Coordinated Universal Time (UTC) and local time. All translations between UTC and local time are based on the following formula:
        UTC = local time + bias
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.StandardName">
      <summary>Contains a description of standard time.</summary>
      <remarks>This string can be a full text description, an abbreviated description, or an acronym. For example, you could denote Eastern Standard Time as "EST". Note that this string can be empty.</remarks>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.StandardDate">
      <summary>Contains a date and a local time when the transition from daylight saving time to standard time will occur on this operating system.</summary>
      <remarks>If a particular time zone does not support daylight saving time, or if the caller needs to disable daylight saving time, the <see cref="F:Microsoft.SPOT.System.TimeMonth" /> field in the <see cref="T:Microsoft.SPOT.SystemTime" /> object must be 0 (zero). If this date is specified, the <see cref="F:Microsoft.SPOT.TimeZoneInformation.StandardDate" /> field in the current <see cref="T:Microsoft.SPOT.TimeZoneInformation" /> object must also be specified. Otherwise, the system assumes that the time zone data is invalid and no changes are applied.
         To select the correct day in a particular month, set the SystemTime object's <see cref="F:Microsoft.SPOT.SystemTime.Year" /> member to 0 (zero), set the <see cref="F:Microsoft.SPOT.SystemTime.Hour" /> and <see cref="F:Microsoft.SPOT.SystemTime.Minute" /> members to the transition time, set the <see cref="F:Microsoft.SPOT.SystemTime.DayOfWeek" /> member to the appropriate day of the week, and set the <see cref="F:Microsoft.SPOT.SystemTime.Day" /> member to indicate the sequential occurrence of the specified day of the week within the specified month (that is, the first, second, third, fourth, or fifth occurrence of that day of the week in that month).
         Using the following syntax, you can specify 2:00 a.m. on the first Sunday in each April: Hour = 2, Month = 4, DayOfWeek = 0, Day 1. Similarly, you can specify 2:00 a.m. on the last Thursday in each October as follows: Hour = 2, Month = 10, DayOfWeek = 4, Day = 5.
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.StandardBias">
      <summary>Specifies the bias value to be used for local time translations that occur during standard time in a particular time zone.</summary>
      <remarks>This field is ignored if a <see cref="F:Microsoft.SPOT.TimeZoneInformation.DaylightDate" /> value has not been set.</remarks>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.DaylightName">
      <summary>Contains a description of daylight saving time.</summary>
      <remarks>This string can be a full text description, an abbreviated description, or an acronym. For example, you could denote Pacific Daylight Time as "PDT". Note that this string can be empty.</remarks>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.DaylightDate">
      <summary>Specifies a date and a local time when the transition from standard time to daylight saving time will occur on this operating system.</summary>
      <remarks>If a particular time zone does not support daylight saving time, or if the caller needs to disable daylight saving time, the <see cref="F:Microsoft.SPOT.System.TimeMonth" /> field in the <see cref="T:Microsoft.SPOT.SystemTime" /> object must be 0 (zero). If this date is specified, the <see cref="F:Microsoft.SPOT.TimeZoneInformation.StandardDate" /> field in the current <see cref="T:Microsoft.SPOT.TimeZoneInformation" /> object must also be specified. Otherwise, the system assumes that the time zone data is invalid and no changes are applied.
        To select the correct day in a particular month, set the SystemTime object's <see cref="F:Microsoft.SPOT.SystemTime.Year" /> member to 0 (zero), set the <see cref="F:Microsoft.SPOT.SystemTime.Hour" /> and <see cref="F:Microsoft.SPOT.SystemTime.Minute" /> members to the transition time, set the <see cref="F:Microsoft.SPOT.SystemTime.DayOfWeek" /> member to the appropriate day of the week, and set the <see cref="F:Microsoft.SPOT.SystemTime.Day" /> member to indicate the sequential occurrence of the specified day of the week within the specified month (that is, the first, second, third, fourth, or fifth occurrence of that day of the week in that month).</remarks>
    </member>
    <member name="F:Microsoft.SPOT.TimeZoneInformation.DaylightBias">
      <summary>Specifies the bias value to be used for local time translations that occur during daylight saving time in a particular time zone.</summary>
      <remarks>This field is ignored if a <see cref="F:Microsoft.SPOT.TimeZoneInformation.DaylightDate" /> value has not been set.</remarks>
    </member>
    <member name="T:Microsoft.SPOT.ExtendedTimeZone">
      <summary>Represents a time zone.</summary>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.GetUtcOffset(System.DateTime)">
      <summary>Finds the coordinated universal time (UTC) offset for the specified local time.</summary>
      <returns>The local time for which you want the UTC offset, measured in clock ticks.</returns>
      <param name="time">The local date and time.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.GetTimeZone(Microsoft.SPOT.TimeZoneId)">
      <summary>Returns a time zone for a specified time zone ID.</summary>
      <returns>A System.TimeZone value set to the time zone ID provided.</returns>
      <param name="id">The ID of the time zone you want to get.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.SetTimeZone(Microsoft.SPOT.TimeZoneId)">
      <summary>Sets the time zone.</summary>
      <param name="id">The time zone you want to set the device system to.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.SetTimeOffset(System.Int32)">
      <summary>Sets the time offset.</summary>
      <param name="minutes">The amount of time you want to set the device system time ahead of the true time, in minutes.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.SynchronizeWithNetworkTime(System.DateTime,System.TimeSpan,Microsoft.SPOT.TimeZoneId)">
      <summary>Synchronizes the device system time with the network time, if the device system currently has a network connection.</summary>
      <returns>A System.TimeSpan value that is set to the difference between the network time and the device system time.</returns>
      <param name="startOfFrameUniversalTime">The UTC time obtained from the network.</param>
      <param name="startofFrameMachineTime">The device system time.</param>
      <param name="tzi">The ID of the time zone you want to synchronize to.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.SetTimeZoneInfo(Microsoft.SPOT.TimeZoneInformation)">
      <summary>Sets the extended information for a particular time zone.</summary>
      <param name="timeZoneInformation">The extended information for a particular time zone.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimeZone.GetDaylightChanges(System.Int32)">
      <summary>Finds the daylight saving time period for a specified year.</summary>
      <returns>A System.Globalization.DaylightTime value that contains the start and end dates for daylight saving time in the specified year.</returns>
      <param name="year">The year to which the daylight saving time period applies.</param>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimeZone.c_TicksTo20030101">
      <summary>Specifies the number of clock ticks equal to the DateTime value of 2003/01/01 00:00:00.</summary>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedTimeZone.StandardName">
      <summary>Gets the standard name for a particular time zone.</summary>
      <returns>The standard name for a particular time zone.</returns>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedTimeZone.DaylightName">
      <summary>Gets the daylight saving time name for a particular time zone.</summary>
      <returns>The daylight saving time name for a particular time zone.</returns>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedTimeZone.TimeZoneId">
      <summary>Gets the ID of a particular time zone.</summary>
      <returns>The ID of a particular time zone.</returns>
    </member>
    <member name="T:Microsoft.SPOT.ExtendedTimer">
      <summary>Provides a mechanism for executing methods at specified intervals or on specific events.</summary>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.Dispose">
      <summary>Releases all resources used by the current instance of the <see cref="T:Microsoft.SPOT.ExtendedTimer" /> class.</summary>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.Change(System.Int32,System.Int32)">
      <summary>Overloaded. Changes the start time and the interval between method invocations for a timer.</summary>
      <param name="dueTime">Not documented yet.</param>
      <param name="period">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.Change(System.TimeSpan,System.TimeSpan)">
      <summary>Overloaded. Changes the start time and the interval between method invocations for a timer</summary>
      <param name="dueTime">Not documented yet.</param>
      <param name="period">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.Change(System.DateTime,System.TimeSpan)">
      <summary>Overloaded. Changes the start time and the interval between method invocations for a timer.</summary>
      <param name="dueTime">Not documented yet.</param>
      <param name="period">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.#ctor(System.Threading.TimerCallback,System.Object,System.Int32,System.Int32)">
      <summary>Not documented yet.</summary>
      <param name="callback">Not documented yet.</param>
      <param name="state">Not documented yet.</param>
      <param name="dueTime">Not documented yet.</param>
      <param name="period">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.#ctor(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan)">
      <summary>Not documented yet.</summary>
      <param name="callback">Not documented yet.</param>
      <param name="state">Not documented yet.</param>
      <param name="dueTime">Not documented yet.</param>
      <param name="period">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.#ctor(System.Threading.TimerCallback,System.Object,System.DateTime,System.TimeSpan)">
      <summary>Not documented yet.</summary>
      <param name="callback">Not documented yet.</param>
      <param name="state">Not documented yet.</param>
      <param name="dueTime">Not documented yet.</param>
      <param name="period">Not documented yet.</param>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedTimer.#ctor(System.Threading.TimerCallback,System.Object,Microsoft.SPOT.ExtendedTimer+TimeEvents)">
      <summary>Not documented yet.</summary>
      <param name="callback">Not documented yet.</param>
      <param name="state">Not documented yet.</param>
      <param name="ev">Not documented yet.</param>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedTimer.LastExpiration">
      <summary>Gets the System.TimeSpan value of the last expiration of the current timer.</summary>
      <returns>The System.TimeSpan value of the last expiration of the current timer.</returns>
    </member>
    <member name="T:Microsoft.SPOT.ExtendedTimer.TimeEvents">
      <summary>Defines the various timer events that are available in the .NET Micro Framework.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimer.TimeEvents.Second">
      <summary>An event that occurs on a change in seconds.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimer.TimeEvents.Minute">
      <summary>An event that occurs on a change in minutes.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimer.TimeEvents.Hour">
      <summary>An event that occurs on a change in hours.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimer.TimeEvents.Day">
      <summary>An event that occurs on a change in days.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimer.TimeEvents.TimeZone">
      <summary>An event that occurs on a change in time zones.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedTimer.TimeEvents.SetTime">
      <summary>An event that occurs at a specified time.</summary>
    </member>
    <member name="T:Microsoft.SPOT.ExtendedWeakReference">
      <summary>Represents an extended weak reference, which references an object but still leaves it prone to garbage collection.</summary>
      <remarks>When the object referred to by the extended weak references has no live references to it, it will be stored in a serialized format. Thus, the target of an ExtendedWeakRefernence object must be serializable. You use a selector and an identifier to identify a group of one or more weak references. The selector should be a type known only to the user of the ExtendedWeakReference object. Note that you can use the same selector with multiple IDs to create groups of ExtendedWeakReference objects.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedWeakReference.Recover(System.Type,System.UInt32)">
      <summary>Recovers a specific <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> object.</summary>
      <returns>A weak reference, or a null reference if there are no more weak references to be recovered.</returns>
      <param name="selector">The type associated with the weak reference you want to recover.</param>
      <param name="id">The ID associated with the weak reference you want to recover.</param>
      <remarks>You can call this method multiple times to recover all of the weak references associated with a specific type or ID.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedWeakReference.PushBackIntoRecoverList">
      <summary>Flags an <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> object as a candidate for recovery after the device reboots or powers down and restarts.</summary>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedWeakReference.RecoverOrCreate(System.Type,System.UInt32,System.UInt32)">
      <summary>Attempts to recover a specific <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> object, and creates a new instance of this class if the recovery attempt fails.</summary>
      <returns>The weak reference you specified, or a null reference if the recovery attempt failed.</returns>
      <param name="selector">The type associated with the weak reference you want to recover.</param>
      <param name="id">The ID associated with the weak reference you want to recover.</param>
      <param name="flags">The flags for the new ExtendedWeakReference object that will be created if the one you specified is not recovered.</param>
      <remarks>The weak reference you specified, or a null reference if the recovery attempt failed.</remarks>
    </member>
    <member name="M:Microsoft.SPOT.ExtendedWeakReference.#ctor(System.Object,System.Type,System.UInt32,System.UInt32)">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> class, referencing a specified object.</summary>
      <param name="target">Not documented yet.</param>
      <param name="selector">Not documented yet.</param>
      <param name="id">Not documented yet.</param>
      <param name="flags">Not documented yet.</param>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.c_SurviveBoot">
      <summary>Contains a flag specifying that the current weak reference will be recoverable after the device reboots.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.c_SurvivePowerdown">
      <summary>Contains a flag specifying that the current weak reference will be recoverable after the device powers down and restarts.</summary>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedWeakReference.Selector">
      <summary>Gets the selector for the current <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> object. </summary>
      <returns>The selector for the current weak reference.</returns>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedWeakReference.Id">
      <summary>Gets the ID associated with the current <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> object.</summary>
      <returns>The ID for the current weak reference.</returns>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedWeakReference.Flags">
      <summary>Gets the flags specifying the states from which the current weak reference should be recoverable.</summary>
      <returns>The recovery flags for the current weak reference.</returns>
    </member>
    <member name="P:Microsoft.SPOT.ExtendedWeakReference.Priority">
      <summary>Gets or sets the priority level for the current <see cref="T:Microsoft.SPOT.ExtendedWeakReference" /> object.</summary>
      <returns>The higher the value, the higher the priority level.</returns>
    </member>
    <member name="T:Microsoft.SPOT.ExtendedWeakReference.PriorityLevel">
      <summary>Defines a set of constants available for prioritizing extended weak references.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.PriorityLevel.OkayToThrowAway">
      <summary>Data that can be safely thrown away.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.PriorityLevel.NiceToHave">
      <summary>Data that is nice to have, but not critical.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.PriorityLevel.Important">
      <summary>Data that is important, but not critical.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.PriorityLevel.Critical">
      <summary>Critical data.</summary>
    </member>
    <member name="F:Microsoft.SPOT.ExtendedWeakReference.PriorityLevel.System">
      <summary>System data that is mandatory for basic operation.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Native_Resources">
      <summary>Not documented yet.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Native_Resources.#ctor">
      <summary>Not documented yet.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Native_Resources.StringResources">
      <summary>summaryStringResources</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_0">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_60">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_70">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_40">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_50">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_20">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_30">
      <summary>Not documented yet.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Native_Resources.StringResources.TimeZoneNames_10">
      <summary>Not documented yet.</summary>
    </member>
  </members>
</doc>
