~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/Newtonsoft.Json/Src/Newtonsoft.Json/FormatterAssemblyStyle.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#if SILVERLIGHT || PocketPC || NETFX_CORE || PORTABLE
 
2
namespace System.Runtime.Serialization.Formatters
 
3
{
 
4
  /// <summary>
 
5
  /// Indicates the method that will be used during deserialization for locating and loading assemblies.
 
6
  /// </summary>
 
7
  public enum FormatterAssemblyStyle
 
8
  {
 
9
    /// <summary>
 
10
    /// In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.
 
11
    /// </summary>
 
12
    Simple,
 
13
    /// <summary>
 
14
    /// In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.
 
15
    /// </summary>
 
16
    Full
 
17
  }
 
18
}
 
19
#endif
 
 
b'\\ No newline at end of file'