Repository: tjoudeh/JWTAspNetWebApi Branch: master Commit: 5f84d3c466e5 Files: 67 Total size: 4.6 MB Directory structure: gitextract__vbstad9/ ├── .gitattributes ├── .gitignore ├── AuthorizationServer.Api/ │ ├── AudiencesStore.cs │ ├── AuthorizationServer.Api.csproj │ ├── Controllers/ │ │ └── AudienceController.cs │ ├── Entities/ │ │ └── Audience.cs │ ├── Formats/ │ │ └── CustomJwtFormat.cs │ ├── Models/ │ │ └── AudienceModel.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles/ │ │ ├── JwtAuthZSrv - FTP (2).pubxml │ │ ├── JwtAuthZSrv - FTP.pubxml │ │ ├── JwtAuthZSrv - Web Deploy (2).pubxml │ │ └── JwtAuthZSrv - Web Deploy.pubxml │ ├── Providers/ │ │ └── CustomOAuthProvider.cs │ ├── Startup.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── JsonWebTokensWebApi.sln ├── README.md ├── ResourceServer.Api/ │ ├── Controllers/ │ │ └── ProtectedController.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ResourceServer.Api.csproj │ ├── Startup.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config └── packages/ ├── Microsoft.AspNet.Cors.5.0.0/ │ └── Microsoft.AspNet.Cors.5.0.0.nupkg ├── Microsoft.AspNet.WebApi.5.2.2/ │ └── Microsoft.AspNet.WebApi.5.2.2.nupkg ├── Microsoft.AspNet.WebApi.Client.5.2.2/ │ ├── Microsoft.AspNet.WebApi.Client.5.2.2.nupkg │ └── lib/ │ ├── net45/ │ │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45+wp81+wpa81/ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.5.2.2/ │ ├── Content/ │ │ └── web.config.transform │ ├── Microsoft.AspNet.WebApi.Core.5.2.2.nupkg │ └── lib/ │ └── net45/ │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Owin.5.2.2/ │ ├── Microsoft.AspNet.WebApi.Owin.5.2.2.nupkg │ └── lib/ │ └── net45/ │ └── System.Web.Http.Owin.xml ├── Microsoft.AspNet.WebApi.WebHost.5.2.2/ │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg │ └── lib/ │ └── net45/ │ └── System.Web.Http.WebHost.xml ├── Microsoft.Owin.3.0.0/ │ ├── Microsoft.Owin.3.0.0.nupkg │ └── lib/ │ └── net45/ │ └── Microsoft.Owin.XML ├── Microsoft.Owin.Cors.3.0.0/ │ ├── Microsoft.Owin.Cors.3.0.0.nupkg │ └── lib/ │ └── net45/ │ └── Microsoft.Owin.Cors.XML ├── Microsoft.Owin.Host.SystemWeb.3.0.0/ │ ├── Microsoft.Owin.Host.SystemWeb.3.0.0.nupkg │ └── lib/ │ └── net45/ │ └── Microsoft.Owin.Host.SystemWeb.xml ├── Microsoft.Owin.Security.3.0.0/ │ ├── Microsoft.Owin.Security.3.0.0.nupkg │ └── lib/ │ └── net45/ │ └── Microsoft.Owin.Security.XML ├── Microsoft.Owin.Security.Jwt.3.0.0/ │ ├── Microsoft.Owin.Security.Jwt.3.0.0.nupkg │ └── lib/ │ └── net45/ │ └── Microsoft.Owin.Security.Jwt.xml ├── Microsoft.Owin.Security.OAuth.3.0.0/ │ ├── Microsoft.Owin.Security.OAuth.3.0.0.nupkg │ └── lib/ │ └── net45/ │ └── Microsoft.Owin.Security.OAuth.XML ├── Newtonsoft.Json.6.0.4/ │ ├── Newtonsoft.Json.6.0.4.nupkg │ ├── lib/ │ │ ├── net20/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── netcore45/ │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81/ │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81/ │ │ └── Newtonsoft.Json.xml │ └── tools/ │ └── install.ps1 ├── Owin.1.0/ │ └── Owin.1.0.nupkg ├── System.IdentityModel.Tokens.Jwt.4.0.0/ │ ├── System.IdentityModel.Tokens.Jwt.4.0.0.nupkg │ └── lib/ │ └── net45/ │ └── System.IdentityModel.Tokens.Jwt.Xml ├── Thinktecture.IdentityModel.Core.1.2.0/ │ └── Thinktecture.IdentityModel.Core.1.2.0.nupkg └── repositories.config ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### * text=auto ############################################################################### # Set default behavior for command prompt diff. # # This is need for earlier builds of msysgit that does not have it on by # default for csharp files. # Note: This is only used by command line ############################################################################### #*.cs diff=csharp ############################################################################### # Set the merge driver for project and solution files # # Merging from the command prompt will add diff markers to the files if there # are conflicts (Merging from VS is not affected by the settings below, in VS # the diff markers are never inserted). Diff markers may cause the following # file extensions to fail to load in VS. An alternative would be to treat # these files as binary and thus will always conflict and require user # intervention with every merge. To do so, just uncomment the entries below ############################################################################### #*.sln merge=binary #*.csproj merge=binary #*.vbproj merge=binary #*.vcxproj merge=binary #*.vcproj merge=binary #*.dbproj merge=binary #*.fsproj merge=binary #*.lsproj merge=binary #*.wixproj merge=binary #*.modelproj merge=binary #*.sqlproj merge=binary #*.wwaproj merge=binary ############################################################################### # behavior for image files # # image files are treated as binary by default. ############################################################################### #*.jpg binary #*.png binary #*.gif binary ############################################################################### # diff behavior for common document formats # # Convert binary document formats to text before diffing them. This feature # is only available from the command line. Turn it on by uncommenting the # entries below. ############################################################################### #*.doc diff=astextplain #*.DOC diff=astextplain #*.docx diff=astextplain #*.DOCX diff=astextplain #*.dot diff=astextplain #*.DOT diff=astextplain #*.pdf diff=astextplain #*.PDF diff=astextplain #*.rtf diff=astextplain #*.RTF diff=astextplain ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. # User-specific files *.suo *.user *.sln.docstates # Build results [Dd]ebug/ [Rr]elease/ x64/ build/ [Bb]in/ [Oo]bj/ # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets !packages/*/build/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* *_i.c *_p.c *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.log *.scc # Visual C++ cache files ipch/ *.aps *.ncb *.opensdf *.sdf *.cachefile # Visual Studio profiler *.psess *.vsp *.vspx # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # NCrunch *.ncrunch* .*crunch*.local.xml # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.Publish.xml # NuGet Packages Directory ## TODO: If you have NuGet Package Restore enabled, uncomment the next line #packages/ # Windows Azure Build Output csx *.build.csdef # Windows Store app package directory AppPackages/ # Others sql/ *.Cache ClientBin/ [Ss]tyle[Cc]op.* ~$* *~ *.dbmdl *.[Pp]ublish.xml *.pfx *.publishsettings # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file to a newer # Visual Studio version. Backup files are not needed, because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm # SQL Server files App_Data/*.mdf App_Data/*.ldf #LightSwitch generated files GeneratedArtifacts/ _Pvt_Extensions/ ModelManifest.xml # ========================= # Windows detritus # ========================= # Windows image file caches Thumbs.db ehthumbs.db # Folder config file Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ # Mac desktop service store files .DS_Store ================================================ FILE: AuthorizationServer.Api/AudiencesStore.cs ================================================ using AuthorizationServer.Api.Entities; using Microsoft.Owin.Security.DataHandler.Encoder; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Web; namespace AuthorizationServer.Api { public static class AudiencesStore { public static ConcurrentDictionary AudiencesList = new ConcurrentDictionary(); static AudiencesStore() { AudiencesList.TryAdd("099153c2625149bc8ecb3e85e03f0022", new Audience { ClientId = "099153c2625149bc8ecb3e85e03f0022", Base64Secret = "IxrAjDoa2FqElO7IhrSrUJELhUckePEPVpaePlS_Xaw", Name = "ResourceServer.Api 1" }); } public static Audience AddAudience(string name) { var clientId = Guid.NewGuid().ToString("N"); var key = new byte[32]; RNGCryptoServiceProvider.Create().GetBytes(key); var base64Secret = TextEncodings.Base64Url.Encode(key); Audience newAudience = new Audience { ClientId = clientId, Base64Secret = base64Secret, Name = name }; AudiencesList.TryAdd(clientId, newAudience); return newAudience; } public static Audience FindAudience(string clientId) { Audience audience = null; if (AudiencesList.TryGetValue(clientId, out audience)) { return audience; } return null; } } } ================================================ FILE: AuthorizationServer.Api/AuthorizationServer.Api.csproj ================================================  Debug AnyCPU 2.0 {EFEA857C-7465-42FD-B3F5-3B225863E9E6} {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} Library Properties AuthorizationServer.Api AuthorizationServer.Api v4.5 true true full false bin\ DEBUG;TRACE prompt 4 pdbonly true bin\ TRACE prompt 4 ..\packages\Microsoft.Owin.3.0.0\lib\net45\Microsoft.Owin.dll ..\packages\Microsoft.Owin.Cors.3.0.0\lib\net45\Microsoft.Owin.Cors.dll ..\packages\Microsoft.Owin.Host.SystemWeb.3.0.0\lib\net45\Microsoft.Owin.Host.SystemWeb.dll ..\packages\Microsoft.Owin.Security.3.0.0\lib\net45\Microsoft.Owin.Security.dll ..\packages\Microsoft.Owin.Security.OAuth.3.0.0\lib\net45\Microsoft.Owin.Security.OAuth.dll False ..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll ..\packages\Owin.1.0\lib\net40\Owin.dll ..\packages\System.IdentityModel.Tokens.Jwt.4.0.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll False ..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll ..\packages\Microsoft.AspNet.Cors.5.0.0\lib\net45\System.Web.Cors.dll False ..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll ..\packages\Microsoft.AspNet.WebApi.Owin.5.2.2\lib\net45\System.Web.Http.Owin.dll False ..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.2\lib\net45\System.Web.Http.WebHost.dll ..\packages\Thinktecture.IdentityModel.Core.1.2.0\lib\net45\Thinktecture.IdentityModel.Core.dll Web.config Web.config 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) True True 18292 / http://localhost:18292/ False False False ================================================ FILE: AuthorizationServer.Api/Controllers/AudienceController.cs ================================================ using AuthorizationServer.Api.Entities; using AuthorizationServer.Api.Models; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace AuthorizationServer.Api.Controllers { [RoutePrefix("api/audience")] public class AudienceController : ApiController { [Route("")] public IHttpActionResult Post(AudienceModel audienceModel) { if (!ModelState.IsValid) { return BadRequest(ModelState); } Audience newAudience = AudiencesStore.AddAudience(audienceModel.Name); return Ok(newAudience); } } } ================================================ FILE: AuthorizationServer.Api/Entities/Audience.cs ================================================ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace AuthorizationServer.Api.Entities { public class Audience { [Key] [MaxLength(32)] public string ClientId { get; set; } [MaxLength(80)] [Required] public string Base64Secret { get; set; } [MaxLength(100)] [Required] public string Name { get; set; } } } ================================================ FILE: AuthorizationServer.Api/Formats/CustomJwtFormat.cs ================================================ using AuthorizationServer.Api.Entities; using Microsoft.Owin; using Microsoft.Owin.Security; using Microsoft.Owin.Security.DataHandler.Encoder; using System; using System.Collections.Generic; using System.IdentityModel.Tokens; using System.Linq; using System.Web; using Thinktecture.IdentityModel.Tokens; namespace AuthorizationServer.Api.Formats { public class CustomJwtFormat : ISecureDataFormat { private const string AudiencePropertyKey = "audience"; private readonly string _issuer = string.Empty; public CustomJwtFormat(string issuer) { _issuer = issuer; } public string Protect(AuthenticationTicket data) { if (data == null) { throw new ArgumentNullException("data"); } string audienceId = data.Properties.Dictionary.ContainsKey(AudiencePropertyKey) ? data.Properties.Dictionary[AudiencePropertyKey] : null; if (string.IsNullOrWhiteSpace(audienceId)) throw new InvalidOperationException("AuthenticationTicket.Properties does not include audience"); Audience audience = AudiencesStore.FindAudience(audienceId); string symmetricKeyAsBase64 = audience.Base64Secret; var keyByteArray = TextEncodings.Base64Url.Decode(symmetricKeyAsBase64); var signingKey = new HmacSigningCredentials(keyByteArray); var issued = data.Properties.IssuedUtc; var expires = data.Properties.ExpiresUtc; var token = new JwtSecurityToken(_issuer, audienceId, data.Identity.Claims, issued.Value.UtcDateTime, expires.Value.UtcDateTime, signingKey); var handler = new JwtSecurityTokenHandler(); var jwt = handler.WriteToken(token); return jwt; } public AuthenticationTicket Unprotect(string protectedText) { throw new NotImplementedException(); } } } ================================================ FILE: AuthorizationServer.Api/Models/AudienceModel.cs ================================================ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace AuthorizationServer.Api.Models { public class AudienceModel { [MaxLength(100)] [Required] public string Name { get; set; } } } ================================================ FILE: AuthorizationServer.Api/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("AuthorizationServer.Api")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("AuthorizationServer.Api")] [assembly: AssemblyCopyright("Copyright © 2014")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("ef2839cf-e33a-41d2-bffc-86f95290754f")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] ================================================ FILE: AuthorizationServer.Api/Properties/PublishProfiles/JwtAuthZSrv - FTP (2).pubxml ================================================  FTP Release Any CPU http://jwtauthzsrv.azurewebsites.net True False ftp://waws-prod-bay-013.ftp.azurewebsites.windows.net False True site/wwwroot JwtAuthZSrv\$JwtAuthZSrv <_SavePWD>True ================================================ FILE: AuthorizationServer.Api/Properties/PublishProfiles/JwtAuthZSrv - FTP.pubxml ================================================  FTP Release Any CPU http://jwtauthzsrv.azurewebsites.net True False ftp://waws-prod-bay-013.ftp.azurewebsites.windows.net False True site/wwwroot JwtAuthZSrv\$JwtAuthZSrv <_SavePWD>True ================================================ FILE: AuthorizationServer.Api/Properties/PublishProfiles/JwtAuthZSrv - Web Deploy (2).pubxml ================================================  MSDeploy Release Any CPU http://jwtauthzsrv.azurewebsites.net True False jwtauthzsrv.scm.azurewebsites.net:443 JwtAuthZSrv True WMSVC True $JwtAuthZSrv <_SavePWD>False ================================================ FILE: AuthorizationServer.Api/Properties/PublishProfiles/JwtAuthZSrv - Web Deploy.pubxml ================================================  MSDeploy Release Any CPU http://jwtauthzsrv.azurewebsites.net True False jwtauthzsrv.scm.azurewebsites.net:443 JwtAuthZSrv True WMSVC True $JwtAuthZSrv <_SavePWD>False ================================================ FILE: AuthorizationServer.Api/Providers/CustomOAuthProvider.cs ================================================ using Microsoft.Owin; using Microsoft.Owin.Security; using Microsoft.Owin.Security.OAuth; using System; using System.Collections.Generic; using System.Linq; using System.Security.Claims; using System.Threading.Tasks; using System.Web; namespace AuthorizationServer.Api.Providers { public class CustomOAuthProvider : OAuthAuthorizationServerProvider { public override Task ValidateClientAuthentication(OAuthValidateClientAuthenticationContext context) { string clientId = string.Empty; string clientSecret = string.Empty; string symmetricKeyAsBase64 = string.Empty; if (!context.TryGetBasicCredentials(out clientId, out clientSecret)) { context.TryGetFormCredentials(out clientId, out clientSecret); } if (context.ClientId == null) { context.SetError("invalid_clientId", "client_Id is not set"); return Task.FromResult(null); } var audience = AudiencesStore.FindAudience(context.ClientId); if (audience == null) { context.SetError("invalid_clientId", string.Format("Invalid client_id '{0}'", context.ClientId)); return Task.FromResult(null); } context.Validated(); return Task.FromResult(null); } public override Task GrantResourceOwnerCredentials(OAuthGrantResourceOwnerCredentialsContext context) { context.OwinContext.Response.Headers.Add("Access-Control-Allow-Origin", new[] { "*" }); //Dummy check here, you need to do your DB checks against membership system http://bit.ly/SPAAuthCode if (context.UserName != context.Password) { context.SetError("invalid_grant", "The user name or password is incorrect"); //return; return Task.FromResult(null); } var identity = new ClaimsIdentity("JWT"); identity.AddClaim(new Claim(ClaimTypes.Name, context.UserName)); identity.AddClaim(new Claim("sub", context.UserName)); identity.AddClaim(new Claim(ClaimTypes.Role, "Manager")); identity.AddClaim(new Claim(ClaimTypes.Role, "Supervisor")); var props = new AuthenticationProperties(new Dictionary { { "audience", (context.ClientId == null) ? string.Empty : context.ClientId } }); var ticket = new AuthenticationTicket(identity, props); context.Validated(ticket); return Task.FromResult(null); } } } ================================================ FILE: AuthorizationServer.Api/Startup.cs ================================================ using AuthorizationServer.Api.Formats; using AuthorizationServer.Api.Providers; using Microsoft.Owin; using Microsoft.Owin.Security.OAuth; using Owin; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; namespace AuthorizationServer.Api { public class Startup { public void Configuration(IAppBuilder app) { HttpConfiguration config = new HttpConfiguration(); // Web API routes config.MapHttpAttributeRoutes(); ConfigureOAuth(app); app.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll); app.UseWebApi(config); } public void ConfigureOAuth(IAppBuilder app) { OAuthAuthorizationServerOptions OAuthServerOptions = new OAuthAuthorizationServerOptions() { //For Dev enviroment only (on production should be AllowInsecureHttp = false) AllowInsecureHttp = true, TokenEndpointPath = new PathString("/oauth2/token"), AccessTokenExpireTimeSpan = TimeSpan.FromMinutes(30), Provider = new CustomOAuthProvider(), AccessTokenFormat = new CustomJwtFormat("http://jwtauthzsrv.azurewebsites.net") }; // OAuth 2.0 Bearer Access Token Generation app.UseOAuthAuthorizationServer(OAuthServerOptions); } } } ================================================ FILE: AuthorizationServer.Api/Web.Debug.config ================================================ ================================================ FILE: AuthorizationServer.Api/Web.Release.config ================================================ ================================================ FILE: AuthorizationServer.Api/Web.config ================================================  ================================================ FILE: AuthorizationServer.Api/packages.config ================================================  ================================================ FILE: JsonWebTokensWebApi.sln ================================================  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0.30501.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthorizationServer.Api", "AuthorizationServer.Api\AuthorizationServer.Api.csproj", "{EFEA857C-7465-42FD-B3F5-3B225863E9E6}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceServer.Api", "ResourceServer.Api\ResourceServer.Api.csproj", "{4021D184-5A67-4520-986D-A8B9475C24E0}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {EFEA857C-7465-42FD-B3F5-3B225863E9E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EFEA857C-7465-42FD-B3F5-3B225863E9E6}.Debug|Any CPU.Build.0 = Debug|Any CPU {EFEA857C-7465-42FD-B3F5-3B225863E9E6}.Release|Any CPU.ActiveCfg = Release|Any CPU {EFEA857C-7465-42FD-B3F5-3B225863E9E6}.Release|Any CPU.Build.0 = Release|Any CPU {4021D184-5A67-4520-986D-A8B9475C24E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4021D184-5A67-4520-986D-A8B9475C24E0}.Debug|Any CPU.Build.0 = Debug|Any CPU {4021D184-5A67-4520-986D-A8B9475C24E0}.Release|Any CPU.ActiveCfg = Release|Any CPU {4021D184-5A67-4520-986D-A8B9475C24E0}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal ================================================ FILE: README.md ================================================ JSON Web Tokens (JWT) in ASP.NET Web Api =============== Tutorial shows how to Issue JSON Web Token in ASP.NET Web API 2 and Owin middleware, then build list of Resource Servers relies on the Token Issuer Party (Authorization Server) ================================================ FILE: ResourceServer.Api/Controllers/ProtectedController.cs ================================================ using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Security.Claims; using System.Web.Http; namespace ResourceServer.Api.Controllers { [Authorize] [RoutePrefix("api/protected")] public class ProtectedController : ApiController { [Route("")] public IEnumerable Get() { var identity = User.Identity as ClaimsIdentity; return identity.Claims.Select(c => new { Type = c.Type, Value = c.Value }); } } } ================================================ FILE: ResourceServer.Api/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("ResourceServer.Api")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("ResourceServer.Api")] [assembly: AssemblyCopyright("Copyright © 2014")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("b437dd1a-97ed-4b24-95cb-4e7a2f212c4c")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] ================================================ FILE: ResourceServer.Api/ResourceServer.Api.csproj ================================================  Debug AnyCPU 2.0 {4021D184-5A67-4520-986D-A8B9475C24E0} {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} Library Properties ResourceServer.Api ResourceServer.Api v4.5 true true full false bin\ DEBUG;TRACE prompt 4 pdbonly true bin\ TRACE prompt 4 ..\packages\Microsoft.Owin.3.0.0\lib\net45\Microsoft.Owin.dll ..\packages\Microsoft.Owin.Cors.3.0.0\lib\net45\Microsoft.Owin.Cors.dll ..\packages\Microsoft.Owin.Host.SystemWeb.3.0.0\lib\net45\Microsoft.Owin.Host.SystemWeb.dll ..\packages\Microsoft.Owin.Security.3.0.0\lib\net45\Microsoft.Owin.Security.dll ..\packages\Microsoft.Owin.Security.Jwt.3.0.0\lib\net45\Microsoft.Owin.Security.Jwt.dll ..\packages\Microsoft.Owin.Security.OAuth.3.0.0\lib\net45\Microsoft.Owin.Security.OAuth.dll False ..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll ..\packages\Owin.1.0\lib\net40\Owin.dll ..\packages\System.IdentityModel.Tokens.Jwt.4.0.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll False ..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll ..\packages\Microsoft.AspNet.Cors.5.0.0\lib\net45\System.Web.Cors.dll False ..\packages\Microsoft.AspNet.WebApi.Core.5.2.2\lib\net45\System.Web.Http.dll ..\packages\Microsoft.AspNet.WebApi.Owin.5.2.2\lib\net45\System.Web.Http.Owin.dll False ..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.2\lib\net45\System.Web.Http.WebHost.dll Web.config Web.config 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) True True 18303 / http://localhost:18303/ False False False ================================================ FILE: ResourceServer.Api/Startup.cs ================================================ using Microsoft.Owin.Security; using Microsoft.Owin.Security.DataHandler.Encoder; using Microsoft.Owin.Security.Jwt; using Microsoft.Owin.Security.OAuth; using Owin; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Web; using System.Web.Http; namespace ResourceServer.Api { public class Startup { public void Configuration(IAppBuilder app) { HttpConfiguration config = new HttpConfiguration(); config.MapHttpAttributeRoutes(); ConfigureOAuth(app); app.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll); app.UseWebApi(config); } public void ConfigureOAuth(IAppBuilder app) { var issuer = "http://jwtauthzsrv.azurewebsites.net"; var audience = "099153c2625149bc8ecb3e85e03f0022"; var secret = TextEncodings.Base64Url.Decode("IxrAjDoa2FqElO7IhrSrUJELhUckePEPVpaePlS_Xaw"); // Api controllers with an [Authorize] attribute will be validated with JWT app.UseJwtBearerAuthentication( new JwtBearerAuthenticationOptions { AuthenticationMode = AuthenticationMode.Active, AllowedAudiences = new[] { audience }, IssuerSecurityTokenProviders = new IIssuerSecurityTokenProvider[] { new SymmetricKeyIssuerSecurityTokenProvider(issuer, secret) }, Provider = new OAuthBearerAuthenticationProvider { OnValidateIdentity = context => { context.Ticket.Identity.AddClaim(new System.Security.Claims.Claim("newCustomClaim", "newValue")); return Task.FromResult(null); } } }); } } } ================================================ FILE: ResourceServer.Api/Web.Debug.config ================================================ ================================================ FILE: ResourceServer.Api/Web.Release.config ================================================ ================================================ FILE: ResourceServer.Api/Web.config ================================================  ================================================ FILE: ResourceServer.Api/packages.config ================================================  ================================================ FILE: packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.xml ================================================  System.Net.Http.Formatting implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. The supports one or more byte ranges regardless of whether the ranges are consecutive or not. If there is only one range then a single partial response body containing a Content-Range header is generated. If there are more than one ranges then a multipart/byteranges response is generated where each body part contains a range indicated by the associated Content-Range header field. implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an is thrown indicating the valid Content-Range of the content. The stream over which to generate a byte range view. The range or ranges, typically obtained from the Range HTTP request header field. The media type of the content stream. implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an is thrown indicating the valid Content-Range of the content. The stream over which to generate a byte range view. The range or ranges, typically obtained from the Range HTTP request header field. The media type of the content stream. The buffer size used when copying the content stream. implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an is thrown indicating the valid Content-Range of the content. The stream over which to generate a byte range view. The range or ranges, typically obtained from the Range HTTP request header field. The media type of the content stream. implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an is thrown indicating the valid Content-Range of the content. The stream over which to generate a byte range view. The range or ranges, typically obtained from the Range HTTP request header field. The media type of the content stream. The buffer size used when copying the content stream. Releases the resources used by the current instance of the class. true to release managed and unmanaged resources; false to release only unmanaged resources. Asynchronously serialize and write the byte range to an HTTP content stream. The task object representing the asynchronous operation. The target stream. Information about the transport. Determines whether a byte array has a valid length in bytes. true if length is a valid length; otherwise, false. The length in bytes of the byte array. Extension methods that aid in making formatted requests using . Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as JSON. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as JSON. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as XML. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as XML. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as JSON. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as JSON. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as XML. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as XML. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. A task object representing the asynchronous operation. The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the value. A cancellation token that can be used by other objects or threads to receive notice of cancellation. The type of value. Represents the factory for creating new instance of . Creates a new instance of the . A new instance of the . The list of HTTP handler that delegates the processing of HTTP response messages to another handler. Creates a new instance of the . A new instance of the . The inner handler which is responsible for processing the HTTP response messages. The list of HTTP handler that delegates the processing of HTTP response messages to another handler. Creates a new instance of the which should be pipelined. A new instance of the which should be pipelined. The inner handler which is responsible for processing the HTTP response messages. The list of HTTP handler that delegates the processing of HTTP response messages to another handler. Specifies extension methods to allow strongly typed objects to be read from HttpContent instances. Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. An object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. An object instance of the specified type. The HttpContent instance from which to read. The collection of MediaTyepFormatter instances to use. The type of the object to read. Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. An object instance of the specified type. The HttpContent instance from which to read. The collection of MediaTypeFormatter instances to use. The IFormatterLogger to log events to. The type of the object to read. Returns a Task that will yield an object of the specified type from the content instance. An object instance of the specified type. The HttpContent instance from which to read. The collection of MediaTypeFormatter instances to use. The IFormatterLogger to log events to. The token to cancel the operation. The type of the object to read. Returns a Task that will yield an object of the specified type from the content instance. An object instance of the specified type. The HttpContent instance from which to read. The collection of MediaTypeFormatter instances to use. The token to cancel the operation. The type of the object to read. Returns a Task that will yield an object of the specified type from the content instance. An object instance of the specified type. The HttpContent instance from which to read. The token to cancel the operation. The type of the object to read. Returns a Task that will yield an object of the specified type from the content instance. A Task that will yield an object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. An object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. The collection of MediaTypeFormatter instances to use. Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. An object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. The collection of MediaTypeFormatter instances to use. The IFormatterLogger to log events to. Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. An object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. The collection of MediaTypeFormatter instances to use. The IFormatterLogger to log events to. The token to cancel the operation. Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. An object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. The collection of MediaTypeFormatter instances to use. The token to cancel the operation. Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. An object instance of the specified type. The HttpContent instance from which to read. The type of the object to read. The token to cancel the operation. Extension methods to read HTML form URL-encoded datafrom instances. Determines whether the specified content is HTML form URL-encoded data. true if the specified content is HTML form URL-encoded data; otherwise, false. The content. Asynchronously reads HTML form URL-encoded from an instance and stores the results in a object. A task object representing the asynchronous operation. The content. Asynchronously reads HTML form URL-encoded from an instance and stores the results in a object. A task object representing the asynchronous operation. The content. The token to cancel the operation. Provides extension methods to read and entities from instances. Determines whether the specified content is HTTP request message content. true if the specified content is HTTP message content; otherwise, false. The content to check. Determines whether the specified content is HTTP response message content. true if the specified content is HTTP message content; otherwise, false. The content to check. Reads the as an . The parsed instance. The content to read. Reads the as an . The parsed instance. The content to read. The URI scheme to use for the request URI. Reads the as an . The parsed instance. The content to read. The URI scheme to use for the request URI. The size of the buffer. Reads the as an . The parsed instance. The content to read. The URI scheme to use for the request URI. The size of the buffer. The maximum length of the HTTP header. Reads the as an . The parsed instance. The content to read. Reads the as an . The parsed instance. The content to read. The size of the buffer. Reads the as an . The parsed instance. The content to read. The size of the buffer. The maximum length of the HTTP header. Extension methods to read MIME multipart entities from instances. Determines whether the specified content is MIME multipart content. true if the specified content is MIME multipart content; otherwise, false. The content. Determines whether the specified content is MIME multipart content with the specified subtype. true if the specified content is MIME multipart content with the specified subtype; otherwise, false. The content. The MIME multipart subtype to match. Reads all body parts within a MIME multipart message and produces a set of instances as a result. A representing the tasks of getting the collection of instances where each instance represents a body part. An existing instance to use for the object's content. Reads all body parts within a MIME multipart message and produces a set of instances as a result. A representing the tasks of getting the collection of instances where each instance represents a body part. An existing instance to use for the object's content. The token to cancel the operation. Reads all body parts within a MIME multipart message and produces a set of instances as a result using the streamProvider instance to determine where the contents of each body part is written. A representing the tasks of getting the collection of instances where each instance represents a body part. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. The type of the MIME multipart. Reads all body parts within a MIME multipart message and produces a set of instances as a result using the streamProvider instance to determine where the contents of each body part is written and bufferSize as read buffer size. A representing the tasks of getting the collection of instances where each instance represents a body part. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. Size of the buffer used to read the contents. The type of the MIME multipart. Reads all body parts within a MIME multipart message and produces a set of instances as a result using the streamProvider instance to determine where the contents of each body part is written and bufferSize as read buffer size. A representing the tasks of getting the collection of instances where each instance represents a body part. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. Size of the buffer used to read the contents. The token to cancel the operation. The type of the MIME multipart. Reads all body parts within a MIME multipart message and produces a set of instances as a result using the streamProvider instance to determine where the contents of each body part is written. A representing the tasks of getting the collection of instances where each instance represents a body part. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. The token to cancel the operation. The type of the MIME multipart. Derived class which can encapsulate an or an as an entity with media type "application/http". Initializes a new instance of the class encapsulating an . The instance to encapsulate. Initializes a new instance of the class encapsulating an . The instance to encapsulate. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Gets the HTTP request message. Gets the HTTP response message. Asynchronously serializes the object's content to the given stream. A instance that is asynchronously serializing the object's content. The to which to write. The associated . Computes the length of the stream if possible. true if the length has been computed; otherwise false. The computed length of the stream. Provides extension methods for the class. Gets any cookie headers present in the request. A collection of instances. The request headers. Gets any cookie headers present in the request that contain a cookie state whose name that matches the specified value. A collection of instances. The request headers. The cookie state name to match. Provides extension methods for the class. Adds cookies to a response. Each Set-Cookie header is represented as one instance. A contains information about the domain, path, and other cookie information as well as one or more instances. Each instance contains a cookie name and whatever cookie state is associate with that name. The state is in the form of a which on the wire is encoded as HTML Form URL-encoded data. This representation allows for multiple related "cookies" to be carried within the same Cookie header while still providing separation between each cookie state. A sample Cookie header is shown below. In this example, there are two with names state1 and state2 respectively. Further, each cookie state contains two name/value pairs (name1/value1 and name2/value2) and (name3/value3 and name4/value4). <code> Set-Cookie: state1:name1=value1&amp;name2=value2; state2:name3=value3&amp;name4=value4; domain=domain1; path=path1; </code> The response headers The cookie values to add to the response. An exception thrown by in case none of the requested ranges overlap with the current extend of the selected resource. The current extend of the resource is indicated in the ContentRange property. Initializes a new instance of the class. Initializes a new instance of the class. Initializes a new instance of the class. Initializes a new instance of the class. The current extend of the resource indicated in terms of a ContentRange header field. Represents a multipart file data. Initializes a new instance of the class. The headers of the multipart file data. The name of the local file for the multipart file data. Gets or sets the headers of the multipart file data. The headers of the multipart file data. Gets or sets the name of the local file for the multipart file data. The name of the local file for the multipart file data. Represents an suited for writing each MIME body parts of the MIME multipart message to a file using a . Initializes a new instance of the class. The root path where the content of MIME multipart body parts are written to. Initializes a new instance of the class. The root path where the content of MIME multipart body parts are written to. The number of bytes buffered for writes to the file. Gets or sets the number of bytes buffered for writes to the file. The number of bytes buffered for writes to the file. Gets or sets the multipart file data. The multipart file data. Gets the name of the local file which will be combined with the root path to create an absolute file name where the contents of the current MIME body part will be stored. A relative filename with no path component. The headers for the current MIME body part. Gets the stream instance where the message body part is written to. The instance where the message body part is written to. The content of HTTP. The header fields describing the body part. Gets or sets the root path where the content of MIME multipart body parts are written to. The root path where the content of MIME multipart body parts are written to. A implementation suited for use with HTML file uploads for writing file content to a remote storage . The stream provider looks at the Content-Disposition header field and determines an output remote based on the presence of a filename parameter. If a filename parameter is present in the Content-Disposition header field, then the body part is written to a remote provided by . Otherwise it is written to a . Initializes a new instance of the class. Read the non-file contents as form data. A representing the post processing. Read the non-file contents as form data. A representing the post processing. The token to monitor for cancellation requests. Gets a collection of file data passed as part of the multipart form data. Gets a of form data passed as part of the multipart form data. Provides a for . Override this method to provide a remote stream to which the data should be written. A result specifying a remote stream where the file will be written to and a location where the file can be accessed. It cannot be null and the stream must be writable. The parent MIME multipart instance. The header fields describing the body part's content. Represents an suited for use with HTML file uploads for writing file content to a . Initializes a new instance of the class. The root path where the content of MIME multipart body parts are written to. Initializes a new instance of the class. The root path where the content of MIME multipart body parts are written to. The number of bytes buffered for writes to the file. Reads the non-file contents as form data. A task that represents the asynchronous operation. Gets a of form data passed as part of the multipart form data. The of form data. Gets the streaming instance where the message body part is written. The instance where the message body part is written. The HTTP content that contains this body part. Header fields describing the body part. Represents a multipart memory stream provider. Initializes a new instance of the class. Returns the for the . The for the . A object. The HTTP content headers. Represents the provider for the multipart related multistream. Initializes a new instance of the class. Gets the related stream for the provider. The content headers. The parent content. The http content headers. Gets the root content of the . The root content of the . Represents a multipart file data for remote storage. Initializes a new instance of the class. The headers of the multipart file data. The remote file's location. The remote file's name. Gets the remote file's name. Gets the headers of the multipart file data. Gets the remote file's location. Represents a stream provider that examines the headers provided by the MIME multipart parser as part of the MIME multipart extension methods (see ) and decides what kind of stream to return for the body part to be written to. Initializes a new instance of the class. Gets or sets the contents for this . The contents for this . Executes the post processing operation for this . The asynchronous task for this operation. Executes the post processing operation for this . The asynchronous task for this operation. The token to cancel the operation. Gets the stream where to write the body part to. This method is called when a MIME multipart body part has been parsed. The instance where the message body part is written to. The content of the HTTP. The header fields describing the body part. Contains a value as well as an associated that will be used to serialize the value when writing this content. Initializes a new instance of the class. The type of object this instance will contain. The value of the object this instance will contain. The formatter to use when serializing the value. Initializes a new instance of the class. The type of object this instance will contain. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. Initializes a new instance of the class. The type of object this instance will contain. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the Content-Type header. Gets the media-type formatter associated with this content instance. The media type formatter associated with this content instance. Gets the type of object managed by this instance. The object type. Asynchronously serializes the object's content to the given stream. The task object representing the asynchronous operation. The stream to write to. The associated . Computes the length of the stream if possible. true if the length has been computed; otherwise, false. Receives the computed length of the stream. Gets or sets the value of the content. The content value. Generic form of . The type of object this class will contain. Initializes a new instance of the class. The value of the object this instance will contain. The formatter to use when serializing the value. Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent`1" /> class. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. Initializes a new instance of the class. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the Content-Type header. Enables scenarios where a data producer wants to write directly (either synchronously or asynchronously) using a stream. Initializes a new instance of the class. An action that is called when an output stream is available, allowing the action to write to it directly. Initializes a new instance of the class. An action that is called when an output stream is available, allowing the action to write to it directly. The media type. Initializes a new instance of the class. An action that is called when an output stream is available, allowing the action to write to it directly. The media type. Initializes a new instance of the class. An action that is called when an output stream is available, allowing the action to write to it directly. Initializes a new instance of the class. An action that is called when an output stream is available, allowing the action to write to it directly. The media type. Initializes a new instance of the class. An action that is called when an output stream is available, allowing the action to write to it directly. The media type. Asynchronously serializes the push content into stream. The serialized push content. The stream where the push content will be serialized. The context. Determines whether the stream content has a valid length in bytes. true if length is a valid length; otherwise, false. The length in bytes of the stream content. Represents the result for . Initializes a new instance of the class. The remote stream instance where the file will be written to. The remote file's location. The remote file's name. Gets the remote file's location. Gets the remote file's location. Gets the remote stream instance where the file will be written to. Defines an exception type for signalling that a request's media type was not supported. Initializes a new instance of the class. The message that describes the error. The unsupported media type. Gets or sets the media type. The media type. Contains extension methods to allow strongly typed objects to be read from the query component of instances. Parses the query portion of the specified URI. A that contains the query parameters. The URI to parse. Reads HTML form URL encoded data provided in the URI query string as an object of a specified type. true if the query component of the URI can be read as the specified type; otherwise, false. The URI to read. The type of object to read. When this method returns, contains an object that is initialized from the query component of the URI. This parameter is treated as uninitialized. Reads HTML form URL encoded data provided in the URI query string as an object of a specified type. true if the query component of the URI can be read as the specified type; otherwise, false. The URI to read. When this method returns, contains an object that is initialized from the query component of the URI. This parameter is treated as uninitialized. The type of object to read. Reads HTML form URL encoded data provided in the query component as a object. true if the query component can be read as ; otherwise false. The instance from which to read. An object to be initialized with this instance or null if the conversion cannot be performed. Abstract media type formatter class to support Bson and Json. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Determines whether this formatter can read objects of the specified type. true if objects of this type can be read, otherwise false. The type of object that will be read. Determines whether this formatter can write objects of the specified type. true if objects of this type can be written, otherwise false. The type of object to write. Creates a instance with the default settings used by the . Returns . Called during deserialization to get the . The reader to use during deserialization. The type of the object to read. The stream from which to read. The encoding to use when reading. Called during serialization and deserialization to get the . The JsonSerializer used during serialization and deserialization. Called during serialization to get the . The writer to use during serialization. The type of the object to write. The stream to write to. The encoding to use when writing. Gets or sets the maximum depth allowed by this formatter. The maximum depth allowed by this formatter. Called during deserialization to read an object of the specified type from the specified stream. The object that has been read. The type of the object to read. The stream from which to read. The encoding to use when reading. The logger to log events to. Called during deserialization to read an object of the specified type from the specified stream. A task whose result will be the object instance that has been read. The type of the object to read. The stream from which to read. The for the content being read. The logger to log events to. Gets or sets the JsonSerializerSettings used to configure the JsonSerializer. The JsonSerializerSettings used to configure the JsonSerializer. Called during serialization to write an object of the specified type to the specified stream. The type of the object to write. The object to write. The stream to write to. The encoding to use when writing. Called during serialization to write an object of the specified type to the specified stream. Returns . The type of the object to write. The object to write. The stream to write to. The for the content being written. The transport context. The token to monitor for cancellation. Represents a media type formatter to handle Bson. Initializes a new instance of the class. Initializes a new instance of the class. The formatter to copy settings from. Called during deserialization to get the . The reader to use during deserialization. The type of the object to read. The stream from which to read. The encoding to use when reading. Called during serialization to get the . The writer to use during serialization. The type of the object to write. The stream to write to. The encoding to use when writing. Gets the default media type for Json, namely "application/bson". The default media type for Json, namely "application/bson". Gets or sets the maximum depth allowed by this formatter. The maximum depth allowed by this formatter. Called during deserialization to read an object of the specified type from the specified stream. The object that has been read. The type of the object to read. The stream from which to read. The encoding to use when reading. The logger to log events to. Called during deserialization to read an object of the specified type from the specified stream. A task whose result will be the object instance that has been read. The type of the object to read. The stream from which to read. The for the content being read. The logger to log events to. Called during serialization to write an object of the specified type to the specified stream. The type of the object to write. The object to write. The stream to write to. The encoding to use when writing. Represents a helper class to allow a synchronous formatter on top of the asynchronous formatter infrastructure. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Gets or sets the suggested size of buffer to use with streams in bytes. The suggested size of buffer to use with streams in bytes. Reads synchronously from the buffered stream. An object of the given . The type of the object to deserialize. The stream from which to read. The , if available. Can be null. The to log events to. Reads synchronously from the buffered stream. An object of the given . The type of the object to deserialize. The stream from which to read. The , if available. Can be null. The to log events to. The token to cancel the operation. Reads asynchronously from the buffered stream. A task object representing the asynchronous operation. The type of the object to deserialize. The stream from which to read. The , if available. Can be null. The to log events to. Reads asynchronously from the buffered stream. A task object representing the asynchronous operation. The type of the object to deserialize. The stream from which to read. The , if available. Can be null. The to log events to. The token to cancel the operation. Writes synchronously to the buffered stream. The type of the object to serialize. The object value to write. Can be null. The stream to which to write. The , if available. Can be null. Writes synchronously to the buffered stream. The type of the object to serialize. The object value to write. Can be null. The stream to which to write. The , if available. Can be null. The token to cancel the operation. Writes asynchronously to the buffered stream. A task object representing the asynchronous operation. The type of the object to serialize. The object value to write. It may be null. The stream to which to write. The , if available. Can be null. The transport context. Writes asynchronously to the buffered stream. A task object representing the asynchronous operation. The type of the object to serialize. The object value to write. It may be null. The stream to which to write. The , if available. Can be null. The transport context. The token to cancel the operation. Represents the result of content negotiation performed using <see cref="M:System.Net.Http.Formatting.IContentNegotiator.Negotiate(System.Type,System.Net.Http.HttpRequestMessage,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})" /> Create the content negotiation result object. The formatter. The preferred media type. Can be null. The formatter chosen for serialization. The media type that is associated with the formatter chosen for serialization. Can be null. The default implementation of , which is used to select a for an or . Initializes a new instance of the class. Initializes a new instance of the class. true to exclude formatters that match only on the object type; otherwise, false. Determines how well each formatter matches an HTTP request. Returns a collection of objects that represent all of the matches. The type to be serialized. The request. The set of objects from which to choose. If true, exclude formatters that match only on the object type; otherwise, false. Returns a . Matches a set of Accept header fields against the media types that a formatter supports. Returns a object that indicates the quality of the match, or null if there is no match. A list of Accept header values, sorted in descending order of q factor. You can create this list by calling the method. The formatter to match against. Matches a request against the objects in a media-type formatter. Returns a object that indicates the quality of the match, or null if there is no match. The request to match. The media-type formatter. Match the content type of a request against the media types that a formatter supports. Returns a object that indicates the quality of the match, or null if there is no match. The request to match. The formatter to match against. Selects the first supported media type of a formatter. Returns a with set to MatchOnCanWriteType, or null if there is no match. A indicating the quality of the match or null is no match. The type to match. The formatter to match against. Performs content negotiating by selecting the most appropriate out of the passed in for the given that can serialize an object of the given . The result of the negotiation containing the most appropriate instance, or null if there is no appropriate formatter. The type to be serialized. The request. The set of objects from which to choose. Determines the best character encoding for writing the response. Returns the that is the best match. The request. The selected media formatter. Select the best match among the candidate matches found. Returns the object that represents the best match. The collection of matches. Determine whether to match on type or not. This is used to determine whether to generate a 406 response or use the default media type formatter in case there is no match against anything in the request. If ExcludeMatchOnTypeOnly is true then we don't match on type unless there are no accept headers. True if not ExcludeMatchOnTypeOnly and accept headers with a q-factor bigger than 0.0 are present. The sorted accept header values to match. Sorts Accept header values in descending order of q factor. Returns the sorted list of MediaTypeWithQualityHeaderValue objects. A collection of StringWithQualityHeaderValue objects, representing the header fields. Sorts a list of Accept-Charset, Accept-Encoding, Accept-Language or related header values in descending order or q factor. Returns the sorted list of StringWithQualityHeaderValue objects. A collection of StringWithQualityHeaderValue objects, representing the header fields. Evaluates whether a match is better than the current match. Returns whichever object is a better match. The current match. The match to evaluate against the current match. Helper class to serialize <see cref="T:System.Collections.Generic.IEnumerable`1" /> types by delegating them through a concrete implementation."/&gt;. The interface implementing to proxy. Initialize a DelegatingEnumerable. This constructor is necessary for to work. Initialize a DelegatingEnumerable with an <see cref="T:System.Collections.Generic.IEnumerable`1" />. This is a helper class to proxy <see cref="T:System.Collections.Generic.IEnumerable`1" /> interfaces for . The <see cref="T:System.Collections.Generic.IEnumerable`1" /> instance to get the enumerator from. This method is not implemented but is required method for serialization to work. Do not use. The item to add. Unused. Get the enumerator of the associated <see cref="T:System.Collections.Generic.IEnumerable`1" />. The enumerator of the <see cref="T:System.Collections.Generic.IEnumerable`1" /> source. Get the enumerator of the associated <see cref="T:System.Collections.Generic.IEnumerable`1" />. The enumerator of the <see cref="T:System.Collections.Generic.IEnumerable`1" /> source. Represent the collection of form data. Initializes a new instance of class. The pairs. Initializes a new instance of class. The query. Initializes a new instance of class. The URI Gets the collection of form data. The collection of form data. The key. Gets an enumerable that iterates through the collection. The enumerable that iterates through the collection. Gets the values of the collection of form data. The values of the collection of form data. The key. Gets values associated with a given key. If there are multiple values, they're concatenated. Values associated with a given key. If there are multiple values, they're concatenated. Reads the collection of form data as a collection of name value. The collection of form data as a collection of name value. Gets an enumerable that iterates through the collection. The enumerable that iterates through the collection. class for handling HTML form URL-ended data, also known as application/x-www-form-urlencoded. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Queries whether the can deserializean object of the specified type. true if the can deserialize the type; otherwise, false. The type to deserialize. Queries whether the can serializean object of the specified type. true if the can serialize the type; otherwise, false. The type to serialize. Gets the default media type for HTML form-URL-encoded data, which is application/x-www-form-urlencoded. The default media type for HTML form-URL-encoded data Gets or sets the maximum depth allowed by this formatter. The maximum depth. Gets or sets the size of the buffer when reading the incoming stream. The buffer size. Asynchronously deserializes an object of the specified type. A whose result will be the object instance that has been read. The type of object to deserialize. The to read. The for the content being read. The to log events to. Performs content negotiation. This is the process of selecting a response writer (formatter) in compliance with header values in the request. Performs content negotiating by selecting the most appropriate out of the passed in formatters for the given request that can serialize an object of the given type. The result of the negotiation containing the most appropriate instance, or null if there is no appropriate formatter. The type to be serialized. Request message, which contains the header values used to perform negotiation. The set of objects from which to choose. Specifies a callback interface that a formatter can use to log errors while reading. Logs an error. The path to the member for which the error is being logged. The error message. Logs an error. The path to the member for which the error is being logged. The error message to be logged. Defines method that determines whether a given member is required on deserialization. Determines whether a given member is required on deserialization. true if should be treated as a required member; otherwise false. The to be deserialized. Represents the default used by . It uses the formatter's to select required members and recognizes the type annotation. Initializes a new instance of the class. The formatter to use for resolving required members. Creates a property on the specified class by using the specified parameters. A to create on the specified class by using the specified parameters. The member info. The member serialization. Represents the class to handle JSON. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Determines whether this can read objects of the specified . true if objects of this can be read, otherwise false. The type of object that will be read. Determines whether this can write objects of the specified . true if objects of this can be written, otherwise false. The type of object that will be written. Called during deserialization to get the . The object used for serialization. The type of object that will be serialized or deserialized. Called during deserialization to get the . The reader to use during deserialization. The type of the object to read. The stream from which to read. The encoding to use when reading. Called during serialization to get the . The writer to use during serialization. The type of the object to write. The stream to write to. The encoding to use when writing. Gets the default media type for JSON, namely "application/json". The for JSON. Gets or sets a value indicating whether to indent elements when writing data. true if to indent elements when writing data; otherwise, false. Gets or sets the maximum depth allowed by this formatter. The maximum depth allowed by this formatter. Called during deserialization to read an object of the specified type from the specified stream. The object that has been read. The type of the object to read. The stream from which to read. The encoding to use when reading. The logger to log events to. Gets or sets a value indicating whether to use by default. true if to by default; otherwise, false. Called during serialization to write an object of the specified type to the specified stream. The type of the object to write. The object to write. The stream to write to. The encoding to use when writing. Called during serialization to write an object of the specified type to the specified stream. Returns . The type of the object to write. The object to write. The stream to write to. The for the content being written. The transport context. The token to monitor for cancellation. Base class to handle serializing and deserializing strongly-typed objects using . Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Queries whether this can deserializean object of the specified type. true if the can deserialize the type; otherwise, false. The type to deserialize. Queries whether this can serializean object of the specified type. true if the can serialize the type; otherwise, false. The type to serialize. Gets the default value for the specified type. The default value. The type for which to get the default value. Returns a specialized instance of the that can format a response for the given parameters. Returns . The type to format. The request. The media type. Gets or sets the maximum number of keys stored in a T: . The maximum number of keys. Gets the mutable collection of objects that match HTTP requests to media types. The collection. Asynchronously deserializes an object of the specified type. A whose result will be an object of the given type. The type of the object to deserialize. The to read. The , if available. It may be null. The to log events to. Derived types need to support reading. Asynchronously deserializes an object of the specified type. A whose result will be an object of the given type. The type of the object to deserialize. The to read. The , if available. It may be null. The to log events to. The token to cancel the operation. Gets or sets the instance used to determine required members. The instance. Determines the best character encoding for reading or writing an HTTP entity body, given a set of content headers. The encoding that is the best match. The content headers. Sets the default headers for content that will be formatted using this formatter. This method is called from the constructor. This implementation sets the Content-Type header to the value of mediaType if it is not null. If it is null it sets the Content-Type to the default media type of this formatter. If the Content-Type does not specify a charset it will set it using this formatters configured . The type of the object being serialized. See . The content headers that should be configured. The authoritative media type. Can be null. Gets the mutable collection of character encodings supported bythis . The collection of objects. Gets the mutable collection of media types supported bythis . The collection of objects. Asynchronously writes an object of the specified type. A that will perform the write. The type of the object to write. The object value to write. It may be null. The to which to write. The if available. It may be null. The if available. It may be null. Derived types need to support writing. Asynchronously writes an object of the specified type. A that will perform the write. The type of the object to write. The object value to write. It may be null. The to which to write. The if available. It may be null. The if available. It may be null. The token to cancel the operation. Derived types need to support writing. Collection class that contains instances. Initializes a new instance of the class. Initializes a new instance of the class. A collection of instances to place in the collection. Adds the elements of the specified collection to the end of the . The items that should be added to the end of the . The items collection itself cannot be , but it can contain elements that are . Removes all items in the collection. Helper to search a collection for a formatter that can read the .NET type in the given mediaType. The formatter that can read the type. Null if no formatter found. The .NET type to read The media type to match on. Helper to search a collection for a formatter that can write the .NET type in the given mediaType. The formatter that can write the type. Null if no formatter found. The .NET type to read The media type to match on. Gets the to use for application/x-www-form-urlencoded data. The to use for application/x-www-form-urlencoded data. Inserts the specified item at the specified index in the collection. The index to insert at. The item to insert. Inserts the elements of a collection into the at the specified index. The zero-based index at which the new elements should be inserted. The items that should be inserted into the . The items collection itself cannot be , but it can contain elements that are . Returns true if the type is one of those loosely defined types that should be excluded from validation. true if the type should be excluded; otherwise, false. The .NET to validate. Gets the to use for JSON. The to use for JSON. Removes the item at the specified index. The index of the item to remove. Assigns the item at the specified index in the collection. The index to insert at. The item to assign. Gets the to use for XML. The to use for XML. This class describes how well a particular matches a request. Initializes a new instance of the class. The matching formatter. The media type. Can be null in which case the media type application/octet-stream is used. The quality of the match. Can be null in which case it is considered a full match with a value of 1.0 The kind of match. Gets the media type formatter. Gets the matched media type. Gets the quality of the match Gets the kind of match that occurred. Contains information about the degree to which a matches the explicit or implicit preferences found in an incoming request. Matched on a type, meaning that the formatter is able to serialize the type. Matched on an explicit “*/*” range in the Accept header. Matched on an explicit literal accept header, such as “application/json”. Matched on an explicit subtype range in an Accept header, such as “application/*”. Matched on the media type of the entity body in the HTTP request message. Matched on after having applied the various s. No match was found An abstract base class used to create an association between or instances that have certain characteristics and a specific . Initializes a new instance of a with the given mediaType value. The that is associated with or instances that have the given characteristics of the . Initializes a new instance of a with the given mediaType value. The that is associated with or instances that have the given characteristics of the . Gets the that is associated with or instances that have the given characteristics of the . Returns the quality of the match of the associated with request. The quality of the match. It must be between 0.0 and 1.0. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match. The to evaluate for the characteristics associated with the of the . Class that provides s from query strings. Initializes a new instance of the class. The name of the query string parameter to match, if present. The value of the query string parameter specified by queryStringParameterName. The to use if the query parameter specified by queryStringParameterName is present and assigned the value specified by queryStringParameterValue. Initializes a new instance of the class. The name of the query string parameter to match, if present. The value of the query string parameter specified by queryStringParameterName. The media type to use if the query parameter specified by queryStringParameterName is present and assigned the value specified by queryStringParameterValue. Gets the query string parameter name. Gets the query string parameter value. Returns a value indicating whether the current instance can return a from request. If this instance can produce a from request it returns 1.0 otherwise 0.0. The to check. This class provides a mapping from an arbitrary HTTP request header field to a used to select instances for handling the entity body of an or . <remarks>This class only checks header fields associated with for a match. It does not check header fields associated with or instances.</remarks> Initializes a new instance of the class. Name of the header to match. The header value to match. The to use when matching headerValue. if set to true then headerValue is considered a match if it matches a substring of the actual header value. The to use if headerName and headerValue is considered a match. Initializes a new instance of the class. Name of the header to match. The header value to match. The value comparison to use when matching headerValue. if set to true then headerValue is considered a match if it matches a substring of the actual header value. The media type to use if headerName and headerValue is considered a match. Gets the name of the header to match. Gets the header value to match. Gets the to use when matching . Gets a value indicating whether is a matched as a substring of the actual header value. this instance is value substring. truefalse Returns a value indicating whether the current instance can return a from request. The quality of the match. It must be between 0.0 and 1.0. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match. The to check. A that maps the X-Requested-With http header field set by AJAX XmlHttpRequest (XHR) to the media type application/json if no explicit Accept header fields are present in the request. Initializes a new instance of class Returns a value indicating whether the current instance can return a from request. The quality of the match. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match and that the request was made using XmlHttpRequest without an Accept header. The to check. class to handle Xml. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Queries whether the can deserializean object of the specified type. true if the can deserialize the type; otherwise, false. The type to deserialize. Queries whether the can serializean object of the specified type. true if the can serialize the type; otherwise, false. The type to serialize. Called during deserialization to get the DataContractSerializer serializer. The object used for serialization. The type of object that will be serialized or deserialized. Called during deserialization to get the XML reader to use for reading objects from the stream. The to use for reading objects. The to read from. The for the content being read. Called during deserialization to get the XML serializer. The object used for serialization. The type of object that will be serialized or deserialized. Called during serialization to get the XML writer to use for writing objects to the stream. The to use for writing objects. The to write to. The for the content being written. Gets the default media type for the XML formatter. The default media type, which is “application/xml”. Called during deserialization to get the XML serializer to use for deserializing objects. An instance of or to use for deserializing the object. The type of object to deserialize. The for the content being read. Called during serialization to get the XML serializer to use for serializing objects. An instance of or to use for serializing the object. The type of object to serialize. The object to serialize. The for the content being written. Gets or sets a value indicating whether to indent elements when writing data. true to indent elements; otherwise, false. This method is to support infrastructure and is not intended to be used directly from your code. Returns . This method is to support infrastructure and is not intended to be used directly from your code. Returns . This method is to support infrastructure and is not intended to be used directly from your code. Returns . This method is to support infrastructure and is not intended to be used directly from your code. Returns . Gets and sets the maximum nested node depth. The maximum nested node depth. Called during deserialization to read an object of the specified type from the specified readStream. A whose result will be the object instance that has been read. The type of object to read. The from which to read. The for the content being read. The to log events to. Unregisters the serializer currently associated with the given type. true if a serializer was previously registered for the type; otherwise, false. The type of object whose serializer should be removed. Registers an to read or write objects of a specified type. The instance. The type of object that will be serialized or deserialized with. Registers an to read or write objects of a specified type. The type of object that will be serialized or deserialized with. The instance. Registers an to read or write objects of a specified type. The type of object that will be serialized or deserialized with. The instance. Registers an to read or write objects of a specified type. The instance. The type of object that will be serialized or deserialized with. Gets or sets a value indicating whether the XML formatter uses the as the default serializer, instead of using the . If true, the formatter uses the by default; otherwise, it uses the by default. Gets the settings to be used while writing. The settings to be used while writing. Called during serialization to write an object of the specified type to the specified writeStream. A that will write the value to the stream. The type of object to write. The object to write. The to which to write. The for the content being written. The . The token to monitor cancellation. Represents the event arguments for the HTTP progress. Initializes a new instance of the class. The percentage of the progress. The user token. The number of bytes transferred. The total number of bytes transferred. Generates progress notification for both request entities being uploaded and response entities being downloaded. Initializes a new instance of the class. Initializes a new instance of the class. The inner message handler. Occurs when event entities are being downloaded. Occurs when event entities are being uploaded. Raises the event that handles the request of the progress. The request. The event handler for the request. Raises the event that handles the response of the progress. The request. The event handler for the request. Sends the specified progress message to an HTTP server for delivery. The sent progress message. The request. The cancellation token. Provides value for the cookie header. Initializes a new instance of the class. Initializes a new instance of the class. The value of the name. The values. Initializes a new instance of the class. The value of the name. The value. Creates a shallow copy of the cookie value. A shallow copy of the cookie value. Gets a collection of cookies sent by the client. A collection object representing the client’s cookie variables. Gets or sets the domain to associate the cookie with. The name of the domain to associate the cookie with. Gets or sets the expiration date and time for the cookie. The time of day (on the client) at which the cookie expires. Gets or sets a value that specifies whether a cookie is accessible by client-side script. true if the cookie has the HttpOnly attribute and cannot be accessed through a client-side script; otherwise, false. Gets a shortcut to the cookie property. The cookie value. Gets or sets the maximum age permitted for a resource. The maximum age permitted for a resource. Gets or sets the virtual path to transmit with the current cookie. The virtual path to transmit with the cookie. Gets or sets a value indicating whether to transmit the cookie using Secure Sockets Layer (SSL)—that is, over HTTPS only. true to transmit the cookie over an SSL connection (HTTPS); otherwise, false. Returns a string that represents the current object. A string that represents the current object. Indicates a value whether the string representation will be converted. true if the string representation will be converted; otherwise, false. The input value. The parsed value to convert. Contains cookie name and its associated cookie state. Initializes a new instance of the class. The name of the cookie. Initializes a new instance of the class. The name of the cookie. The collection of name-value pair for the cookie. Initializes a new instance of the class. The name of the cookie. The value of the cookie. Returns a new object that is a copy of the current instance. A new object that is a copy of the current instance. Gets or sets the cookie value with the specified cookie name, if the cookie data is structured. The cookie value with the specified cookie name. Gets or sets the name of the cookie. The name of the cookie. Returns the string representation the current object. The string representation the current object. Gets or sets the cookie value, if cookie data is a simple string value. The value of the cookie. Gets or sets the collection of name-value pair, if the cookie data is structured. The collection of name-value pair for the cookie. ================================================ FILE: packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml ================================================ System.Net.Http.Formatting Utility class for creating and unwrapping instances. Formats the specified resource string using . A composite format string. An object array that contains zero or more objects to format. The formatted string. Creates an with the provided properties. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an with the provided properties. The name of the parameter that caused the current exception. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an with a message saying that the argument must be an "http" or "https" URI. The name of the parameter that caused the current exception. The value of the argument that causes this exception. The logged . Creates an with a message saying that the argument must be an absolute URI. The name of the parameter that caused the current exception. The value of the argument that causes this exception. The logged . Creates an with a message saying that the argument must be an absolute URI without a query or fragment identifier and then logs it with . The name of the parameter that caused the current exception. The value of the argument that causes this exception. The logged . Creates an with the provided properties. The logged . Creates an with the provided properties. The name of the parameter that caused the current exception. The logged . Creates an with the provided properties. The name of the parameter that caused the current exception. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an with a default message. The name of the parameter that caused the current exception. The logged . Creates an with the provided properties. The name of the parameter that caused the current exception. The value of the argument that causes this exception. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an with a message saying that the argument must be greater than or equal to . The name of the parameter that caused the current exception. The value of the argument that causes this exception. The minimum size of the argument. The logged . Creates an with a message saying that the argument must be less than or equal to . The name of the parameter that caused the current exception. The value of the argument that causes this exception. The maximum size of the argument. The logged . Creates an with a message saying that the key was not found. The logged . Creates an with a message saying that the key was not found. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an initialized according to guidelines. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an initialized with the provided parameters. The logged . Creates an initialized with the provided parameters. A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an for an invalid enum argument. The name of the parameter that caused the current exception. The value of the argument that failed. A that represents the enumeration class with the valid values. The logged . Creates an . A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an . Inner exception A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Creates an . A composite format string explaining the reason for the exception. An object array that contains zero or more objects to format. The logged . Helpers for safely using Task libraries. Returns a canceled Task. The task is completed, IsCanceled = True, IsFaulted = False. Returns a canceled Task of the given type. The task is completed, IsCanceled = True, IsFaulted = False. Returns a completed task that has no result. Returns an error task. The task is Completed, IsCanceled = False, IsFaulted = True Returns an error task of the given type. The task is Completed, IsCanceled = False, IsFaulted = True Used as the T in a "conversion" of a Task into a Task{T} This class is a convenient cache for per-type cancelled tasks Cast Task to Task of object Cast Task of T to Task of object Throws the first faulting exception for a task which is faulted. It preserves the original stack trace when throwing the exception. Note: It is the caller's responsibility not to pass incomplete tasks to this method, because it does degenerate into a call to the equivalent of .Wait() on the task when it hasn't yet completed. Attempts to get the result value for the given task. If the task ran to completion, then it will return true and set the result value; otherwise, it will return false. Helpers for encoding, decoding, and parsing URI query components. In .Net 4.5 please use the WebUtility class. Helper extension methods for fast use of collections. Return a new array with the value added to the end. Slow and best suited to long lived arrays with few writes relative to reads. Return the enumerable as an Array, copying if required. Optimized for common case where it is an Array. Avoid mutating the return value. Return the enumerable as a Collection of T, copying if required. Optimized for the common case where it is a Collection of T and avoiding a copy if it implements IList of T. Avoid mutating the return value. Return the enumerable as a IList of T, copying if required. Avoid mutating the return value. Return the enumerable as a List of T, copying if required. Optimized for common case where it is an List of T or a ListWrapperCollection of T. Avoid mutating the return value. Remove values from the list starting at the index start. Return the only value from list, the type's default value if empty, or call the errorAction for 2 or more. Returns a single value in list matching type TMatch if there is only one, null if there are none of type TMatch or calls the errorAction with errorArg1 if there is more than one. Convert an ICollection to an array, removing null values. Fast path for case where there are no null values. Convert the array to a Dictionary using the keySelector to extract keys from values and the specified comparer. Optimized for array input. Convert the list to a Dictionary using the keySelector to extract keys from values and the specified comparer. Optimized for IList of T input with fast path for array. Convert the enumerable to a Dictionary using the keySelector to extract keys from values and the specified comparer. Fast paths for array and IList of T. Convert the list to a Dictionary using the keySelector to extract keys from values and the specified comparer. Optimized for IList of T input. No checking for other types. A class that inherits from Collection of T but also exposes its underlying data as List of T for performance. Provides various internal utility functions Quality factor to indicate a perfect match. Quality factor to indicate no match. The default max depth for our formatter is 256 The default min depth for our formatter is 1 HTTP X-Requested-With header field name HTTP X-Requested-With header field value HTTP Host header field name HTTP Version token A representing . A representing . A representing . A representing . A representing . A representing . Determines whether is a type. The type to test. true if is a type; otherwise, false. Creates an empty instance. The only way is to get it from a dummy instance. The created instance. Create a default reader quotas with a default depth quota of 1K Remove bounding quotes on a token if present Token to unquote. Unquoted token. Parses valid integer strings with no leading signs, whitespace or other The value to parse The result True if value was valid; false otherwise. Abstract class to support Bson and Json. Base class to handle serializing and deserializing strongly-typed objects using . Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Returns a to deserialize an object of the given from the given This implementation throws a . Derived types should override this method if the formatter supports reading. An implementation of this method should NOT close upon completion. The stream will be closed independently when the instance is disposed. The type of the object to deserialize. The to read. The if available. It may be null. The to log events to. A whose result will be an object of the given type. Derived types need to support reading. Returns a to deserialize an object of the given from the given This implementation throws a . Derived types should override this method if the formatter supports reading. An implementation of this method should NOT close upon completion. The stream will be closed independently when the instance is disposed. The type of the object to deserialize. The to read. The if available. It may be null. The to log events to. The token to monitor for cancellation requests. A whose result will be an object of the given type. Derived types need to support reading. Returns a that serializes the given of the given to the given . This implementation throws a . Derived types should override this method if the formatter supports reading. An implementation of this method should NOT close upon completion. The stream will be closed independently when the instance is disposed. The type of the object to write. The object value to write. It may be null. The to which to write. The if available. It may be null. The if available. It may be null. A that will perform the write. Derived types need to support writing. Returns a that serializes the given of the given to the given . This implementation throws a . Derived types should override this method if the formatter supports reading. An implementation of this method should NOT close upon completion. The stream will be closed independently when the instance is disposed. The type of the object to write. The object value to write. It may be null. The to which to write. The if available. It may be null. The if available. It may be null. The token to monitor for cancellation requests. A that will perform the write. Derived types need to support writing. This method converts (and interfaces that mandate it) to a for serialization purposes. The type to potentially be wrapped. If the type is wrapped, it's changed in place. Returns true if the type was wrapped; false, otherwise This method converts (and interfaces that mandate it) to a for serialization purposes. The type to potentially be wrapped. If the type is wrapped, it's changed in place. Returns true if the type was wrapped; false, otherwise Determines the best amongst the supported encodings for reading or writing an HTTP entity body based on the provided . The content headers provided as part of the request or response. The to use when reading the request or writing the response. Sets the default headers for content that will be formatted using this formatter. This method is called from the constructor. This implementation sets the Content-Type header to the value of if it is not null. If it is null it sets the Content-Type to the default media type of this formatter. If the Content-Type does not specify a charset it will set it using this formatters configured . Subclasses can override this method to set content headers such as Content-Type etc. Subclasses should call the base implementation. Subclasses should treat the passed in (if not null) as the authoritative media type and use that as the Content-Type. The type of the object being serialized. See . The content headers that should be configured. The authoritative media type. Can be null. Returns a specialized instance of the that can handle formatting a response for the given parameters. This method is called after a formatter has been selected through content negotiation. The default implementation returns this instance. Derived classes can choose to return a new instance if they need to close over any of the parameters. The type being serialized. The request. The media type chosen for the serialization. Can be null. An instance that can format a response to the given . Determines whether this can deserialize an object of the specified type. Derived classes must implement this method and indicate if a type can or cannot be deserialized. The type of object that will be deserialized. true if this can deserialize an object of that type; otherwise false. Determines whether this can serialize an object of the specified type. Derived classes must implement this method and indicate if a type can or cannot be serialized. The type of object that will be serialized. true if this can serialize an object of that type; otherwise false. Gets the default value for the specified type. Gets or sets the maximum number of keys stored in a NameValueCollection. Gets the mutable collection of elements supported by this instance. Gets the mutable collection of character encodings supported by this instance. The encodings are used when reading or writing data. Collection class that validates it contains only instances that are not null and not media ranges. Inserts the into the collection at the specified . The zero-based index at which item should be inserted. The object to insert. It cannot be null. Replaces the element at the specified . The zero-based index of the item that should be replaced. The new value for the element at the specified index. It cannot be null. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Creates a instance with the default settings used by the . Determines whether this can read objects of the specified . The of object that will be read. true if objects of this can be read, otherwise false. Determines whether this can write objects of the specified . The of object that will be written. true if objects of this can be written, otherwise false. Called during deserialization to read an object of the specified from the specified . The of object to read. The from which to read. The for the content being written. The to log events to. A whose result will be the object instance that has been read. Called during deserialization to read an object of the specified from the specified . Public for delegating wrappers of this class. Expected to be called only from . The of object to read. The from which to read. The to use when reading. The to log events to. The instance that has been read. Called during deserialization to get the . Public for delegating wrappers of this class. Expected to be called only from . The of object to read. The from which to read. The to use when reading. The used during deserialization. Called during serialization and deserialization to get the . Public for delegating wrappers of this class. Expected to be called only from and . The used during serialization and deserialization. Called during serialization to write an object of the specified to the specified . Public for delegating wrappers of this class. Expected to be called only from . The of object to write. The object to write. The to which to write. The to use when writing. Called during serialization to get the . Public for delegating wrappers of this class. Expected to be called only from . The of object to write. The to which to write. The to use when writing. The used during serialization. Gets or sets the used to configure the . class to handle Bson. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Gets the default media type for Json, namely "application/bson". The default media type does not have any charset parameter as the can be configured on a per instance basis. Because is mutable, the value returned will be a new instance every time. Helper class to serialize types by delegating them through a concrete implementation."/>. The interface implementing to proxy. Initialize a DelegatingEnumerable. This constructor is necessary for to work. Initialize a DelegatingEnumerable with an . This is a helper class to proxy interfaces for . The instance to get the enumerator from. Get the enumerator of the associated . The enumerator of the source. This method is not implemented but is required method for serialization to work. Do not use. The item to add. Unused. Get the enumerator of the associated . The enumerator of the source. Represent the form data. - This has 100% fidelity (including ordering, which is important for deserializing ordered array). - using interfaces allows us to optimize the implementation. E.g., we can avoid eagerly string-splitting a 10gb file. - This also provides a convenient place to put extension methods. Initialize a form collection around incoming data. The key value enumeration should be immutable. incoming set of key value pairs. Ordering is preserved. Initialize a form collection from a query string. Uri and FormURl body have the same schema. Initialize a form collection from a URL encoded query string. Any leading question mark (?) will be considered part of the query string and treated as any other value. Get the collection as a NameValueCollection. Beware this loses some ordering. Values are ordered within a key, but keys are no longer ordered against each other. Get values associated with a given key. If there are multiple values, they're concatenated. Get a value associated with a given key. Gets values associated with a given key. If there are multiple values, they're concatenated. The name of the entry that contains the values to get. The name can be null. Values associated with a given key. If there are multiple values, they're concatenated. This class provides a low-level API for parsing HTML form URL-encoded data, also known as application/x-www-form-urlencoded data. The output of the parser is a instance. This is a low-level API intended for use by other APIs. It has been optimized for performance and is not intended to be called directly from user code. Parses a collection of query string values as a . This is a low-level API intended for use by other APIs. It has been optimized for performance and is not intended to be called directly from user code. The collection of query string name-value pairs parsed in lexical order. Both names and values must be un-escaped so that they don't contain any encoding. The corresponding to the given query string values. Parses a collection of query string values as a . This is a low-level API intended for use by other APIs. It has been optimized for performance and is not intended to be called directly from user code. The collection of query string name-value pairs parsed in lexical order. Both names and values must be un-escaped so that they don't contain any encoding. The maximum depth of object graph encoded as x-www-form-urlencoded. The corresponding to the given query string values. Parses a collection of query string values as a . This is a low-level API intended for use by other APIs. It has been optimized for performance and is not intended to be called directly from user code. The collection of query string name-value pairs parsed in lexical order. Both names and values must be un-escaped so that they don't contain any encoding. The parsed result or null if parsing failed. true if was parsed successfully; otherwise false. Parses a collection of query string values as a . This is a low-level API intended for use by other APIs. It has been optimized for performance and is not intended to be called directly from user code. The collection of query string name-value pairs parsed in lexical order. Both names and values must be un-escaped so that they don't contain any encoding. The maximum depth of object graph encoded as x-www-form-urlencoded. The parsed result or null if parsing failed. true if was parsed successfully; otherwise false. Parses a collection of query string values as a . This is a low-level API intended for use by other APIs. It has been optimized for performance and is not intended to be called directly from user code. The collection of query string name-value pairs parsed in lexical order. Both names and values must be un-escaped so that they don't contain any encoding. The maximum depth of object graph encoded as x-www-form-urlencoded. Indicates whether to throw an exception on error or return false The corresponding to the given query string values. Class that wraps key-value pairs. This use of this class avoids a FxCop warning CA908 which happens if using various generic types. Initializes a new instance of the class. The key of this instance. The value of this instance. Gets or sets the key of this instance. The key of this instance. Gets or sets the value of this instance. The value of this instance. Interface to log events that occur during formatter reads. Logs an error. The path to the member for which the error is being logged. The error message to be logged. Logs an error. The path to the member for which the error is being logged. The exception to be logged. class to handle Json. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Gets the default media type for Json, namely "application/json". The default media type does not have any charset parameter as the can be configured on a per instance basis. Because is mutable, the value returned will be a new instance every time. Gets or sets a value indicating whether to indent elements when writing data. Constants related to media types. Gets a instance representing application/octet-stream. A new instance representing application/octet-stream. Gets a instance representing application/xml. A new instance representing application/xml. Gets a instance representing application/json. A new instance representing application/json. Gets a instance representing text/xml. A new instance representing text/xml. Gets a instance representing text/json. A new instance representing text/json. Gets a instance representing application/x-www-form-urlencoded. A new instance representing application/x-www-form-urlencoded. Gets a instance representing application/bson. A new instance representing application/bson. Not yet a standard. In particular this media type is not currently listed at http://www.iana.org/assignments/media-types/application. Collection class that contains instances. Initializes a new instance of the class. This collection will be initialized to contain default instances for Xml, JsonValue and Json. Initializes a new instance of the class. A collection of instances to place in the collection. Helper to search a collection for a formatter that can read the .NET type in the given mediaType. .NET type to read media type to match on. Formatter that can read the type. Null if no formatter found. Helper to search a collection for a formatter that can write the .NET type in the given mediaType. .NET type to read media type to match on. Formatter that can write the type. Null if no formatter found. Returns true if the type is one of those loosely defined types that should be excluded from validation .NET to validate true if the type should be excluded. Creates a collection of new instances of the default s. The collection of default instances. Gets the to use for Xml. Gets the to use for Json. Extension methods for . Determines whether two instances match. The instance is said to match if and only if is a strict subset of the values and parameters of . That is, if the media type and media type parameters of are all present and match those of then it is a match even though may have additional parameters. The first media type. The second media type. true if this is a subset of ; false otherwise. Determines whether two instances match. The instance is said to match if and only if is a strict subset of the values and parameters of . That is, if the media type and media type parameters of are all present and match those of then it is a match even though may have additional parameters. The first media type. The second media type. Indicates whether is a regular media type, a subtype media range, or a full media range true if this is a subset of ; false otherwise. Not a media type range A subtype media range, e.g. "application/*". An all media range, e.g. "*/*". Buffer-oriented parsing of HTML form URL-ended, also known as application/x-www-form-urlencoded, data. Initializes a new instance of the class. The collection to which name value pairs are added as they are parsed. Maximum length of all the individual name value pairs. Parse a buffer of URL form-encoded name-value pairs and add them to the collection. Bytes are parsed in a consuming manner from the beginning of the buffer meaning that the same bytes can not be present in the buffer. Buffer from where data is read Size of buffer Offset into buffer Indicates whether the end of the URL form-encoded data has been reached. State of the parser. Call this method with new data until it reaches a final state. Maintains information about the current header field being parsed. Copies current name value pair field to the provided collection instance. The collection to copy into. Copies current name-only to the provided collection instance. The collection to copy into. Clears this instance. Gets the name of the name value pair. Gets the value of the name value pair The combines for parsing the HTTP Request Line and for parsing each header field. Initializes a new instance of the class. The parsed HTTP request without any header sorting. Initializes a new instance of the class. The parsed HTTP request without any header sorting. The max length of the HTTP request line. The max length of the HTTP header. Parse an HTTP request header and fill in the instance. Request buffer from where request is read Size of request buffer Offset into request buffer State of the parser. HTTP Request Line parser for parsing the first line (the request line) in an HTTP request. Initializes a new instance of the class. instance where the request line properties will be set as they are parsed. Maximum length of HTTP header. Parse an HTTP request line. Bytes are parsed in a consuming manner from the beginning of the request buffer meaning that the same bytes can not be present in the request buffer. Request buffer from where request is read Size of request buffer Offset into request buffer State of the parser. The combines for parsing the HTTP Status Line and for parsing each header field. Initializes a new instance of the class. The parsed HTTP response without any header sorting. Initializes a new instance of the class. The parsed HTTP response without any header sorting. The max length of the HTTP status line. The max length of the HTTP header. Parse an HTTP response header and fill in the instance. Response buffer from where response is read Size of response buffer Offset into response buffer State of the parser. HTTP Status line parser for parsing the first line (the status line) in an HTTP response. Initializes a new instance of the class. instance where the response line properties will be set as they are parsed. Maximum length of HTTP header. Parse an HTTP status line. Bytes are parsed in a consuming manner from the beginning of the response buffer meaning that the same bytes can not be present in the response buffer. Response buffer from where response is read Size of response buffer Offset into response buffer State of the parser. Buffer-oriented RFC 5322 style Internet Message Format parser which can be used to pass header fields used in HTTP and MIME message entities. Initializes a new instance of the class. Concrete instance where header fields are added as they are parsed. Maximum length of complete header containing all the individual header fields. Parse a buffer of RFC 5322 style header fields and add them to the collection. Bytes are parsed in a consuming manner from the beginning of the buffer meaning that the same bytes can not be present in the buffer. Request buffer from where request is read Size of request buffer Offset into request buffer State of the parser. Call this method with new data until it reaches a final state. Maintains information about the current header field being parsed. Copies current header field to the provided instance. The headers. Determines whether this instance is empty. true if this instance is empty; otherwise, false. Clears this instance. Gets the header field name. Gets the header field value. Complete MIME multipart parser that combines for parsing the MIME message into individual body parts and for parsing each body part into a MIME header and a MIME body. The caller of the parser is returned the resulting MIME bodies which can then be written to some output. Initializes a new instance of the class. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. Initializes a new instance of the class. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. The max length of the entire MIME multipart message. The max length of the MIME header within each MIME body part. Determines whether the specified content is MIME multipart content. The content. true if the specified content is MIME multipart content; otherwise, false. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Parses the data provided and generates parsed MIME body part bodies in the form of which are ready to write to the output stream. The data to parse The number of bytes available in the input data Parsed instances. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Buffer-oriented MIME multipart parser. Initializes a new instance of the class. Message boundary Maximum length of entire MIME multipart message. Parse a MIME multipart message. Bytes are parsed in a consuming manner from the beginning of the request buffer meaning that the same bytes can not be present in the request buffer. Request buffer from where request is read Size of request buffer Offset into request buffer Any body part that was considered as a potential MIME multipart boundary but which was in fact part of the body. The bulk of the body part. Indicates whether the final body part has been found. In order to get the complete body part, the caller is responsible for concatenating the contents of the and out parameters. State of the parser. Represents the overall state of the . Need more data Parsing of a complete body part succeeded. Bad data format Data exceeds the allowed size Maintains information about the current body part being parsed. Initializes a new instance of the class. The reference boundary. Resets the boundary offset. Resets the boundary. Appends byte to the current boundary. The data to append to the boundary. Appends array of bytes to the current boundary. The data to append to the boundary. The offset into the data. The number of bytes to append. Gets the discarded boundary. An containing the discarded boundary. Determines whether current boundary is valid. true if curent boundary is valid; otherwise, false. Clears the body part. Clears all. Gets or sets a value indicating whether this instance has potential boundary left over. true if this instance has potential boundary left over; otherwise, false. Gets the boundary delta. Gets or sets the body part. The body part. Gets a value indicating whether this body part instance is final. true if this body part instance is final; otherwise, false. Represents the overall state of various parsers. Need more data Parsing completed (final) Bad data format (final) Data exceeds the allowed size (final) Helper class for validating values. Determines whether the specified is defined by the enumeration. The value to verify. true if the specified options is defined; otherwise, false. Validates the specified and throws an exception if not valid. The value to validate. Name of the parameter to use if throwing exception. class to handle Xml. Initializes a new instance of the class. Initializes a new instance of the class. The instance to copy settings from. Registers the to use to read or write the specified . The type of object that will be serialized or deserialized with . The instance to use. Registers the to use to read or write the specified type. The type of object that will be serialized or deserialized with . The instance to use. Registers the to use to read or write the specified . The type of objects for which will be used. The instance to use. Registers the to use to read or write the specified type. The type of object that will be serialized or deserialized with . The instance to use. Unregisters the serializer currently associated with the given . Unless another serializer is registered for the , a default one will be created. The type of object whose serializer should be removed. true if a serializer was registered for the ; otherwise false. Determines whether this can read objects of the specified . The type of object that will be read. true if objects of this can be read, otherwise false. Determines whether this can write objects of the specified . The type of object that will be written. true if objects of this can be written, otherwise false. Called during deserialization to read an object of the specified from the specified . The type of object to read. The from which to read. The for the content being read. The to log events to. A whose result will be the object instance that has been read. Called during deserialization to get the XML serializer to use for deserializing objects. The type of object to deserialize. The for the content being read. An instance of or to use for deserializing the object. Called during deserialization to get the XML reader to use for reading objects from the stream. The to read from. The for the content being read. The to use for reading objects. Called during serialization to get the XML serializer to use for serializing objects. The type of object to serialize. The object to serialize. The for the content being written. An instance of or to use for serializing the object. Called during serialization to get the XML writer to use for writing objects to the stream. The to write to. The for the content being written. The to use for writing objects. Called during deserialization to get the XML serializer. The type of object that will be serialized or deserialized. The used to serialize the object. Called during deserialization to get the DataContractSerializer serializer. The type of object that will be serialized or deserialized. The used to serialize the object. This method is to support infrastructure and is not intended to be used directly from your code. This method is to support infrastructure and is not intended to be used directly from your code. This method is to support infrastructure and is not intended to be used directly from your code. This method is to support infrastructure and is not intended to be used directly from your code. Gets the default media type for xml, namely "application/xml". The default media type does not have any charset parameter as the can be configured on a per instance basis. Because is mutable, the value returned will be a new instance every time. Gets or sets a value indicating whether to use instead of by default. true if use by default; otherwise, false. The default is false. Gets or sets a value indicating whether to indent elements when writing data. Gets the to be used while writing. NameValueCollection to represent form data and to generate form data output. Creates a new instance Adds a name-value pair to the collection. The name to be added as a case insensitive string. The value to be added. Converts the content of this instance to its equivalent string representation. The string representation of the value of this instance, multiple values with a single key are comma separated. Gets the values associated with the specified name combined into one comma-separated list. The name of the entry that contains the values to get. The name can be null. A that contains a comma-separated list of url encoded values associated with the specified name if found; otherwise, null. The values are Url encoded. Gets the values associated with the specified name. The A that contains url encoded values associated with the name, or null if the name does not exist. Gets the values associated with the specified name combined into one comma-separated list. The name of the entry that contains the values to get. The name can be null. A that contains a comma-separated list of url encoded values associated with the specified name if found; otherwise, null. The values are Url encoded. Gets the number of names in the collection. Extension methods to allow strongly typed objects to be read from the query component of instances. Parses the query portion of the specified . The instance from which to read. A containing the parsed result. Reads HTML form URL encoded data provided in the query component as a object. The instance from which to read. An object to be initialized with this instance or null if the conversion cannot be performed. true if the query component can be read as ; otherwise false. Reads HTML form URL encoded data provided in the query component as an of the given . The instance from which to read. The type of the object to read. An object to be initialized with this instance or null if the conversion cannot be performed. true if the query component can be read as the specified type; otherwise false. Reads HTML form URL encoded data provided in the query component as an of type . The type of the object to read. The instance from which to read. An object to be initialized with this instance or null if the conversion cannot be performed. true if the query component can be read as the specified type; otherwise false. Provides data for the events generated by . Initializes a new instance of the with the parameters given. The percent completed of the overall exchange. Any user state provided as part of reading or writing the data. The current number of bytes either received or sent. The total number of bytes expected to be received or sent. Gets the current number of bytes transferred. Gets the total number of expected bytes to be sent or received. If the number is not known then this is null. Wraps an inner in order to insert a on writing data. The provides a mechanism for getting progress event notifications when sending and receiving data in connection with exchanging HTTP requests and responses. Register event handlers for the events and to see events for data being sent and received. Initializes a new instance of the class. Initializes a new instance of the class. The inner handler to which this handler submits requests. Raises the event. The request. The instance containing the event data. Raises the event. The request. The instance containing the event data. Occurs every time the client sending data is making progress. Occurs every time the client receiving data is making progress. This implementation of registers how much data has been read (received) versus written (sent) for a particular HTTP operation. The implementation is client side in that the total bytes to send is taken from the request and the total bytes to read is taken from the response. In a server side scenario, it would be the other way around (reading the request and writing the response). Stream that delegates to inner stream. This is taken from System.Net.Http Extension methods that aid in making formatted requests using . Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a POST request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as JSON. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses a default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with the given serialized as XML. This method uses the default instance of . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Sends a PUT request as an asynchronous operation to the specified Uri with serialized using the given . The type of . The client used to make the request. The Uri the request is sent to. The value that will be placed in the request's entity body. The formatter used to serialize the . The authoritative value of the request's content's Content-Type header. Can be null in which case the formatter's default content type will be used. The token to monitor for cancellation requests. A task object representing the asynchronous operation. Creates a new instance configured with the handlers provided and with an as the innermost handler. An ordered list of instances to be invoked as an travels from the to the network and an travels from the network back to . The handlers are invoked in a top-down fashion. That is, the first entry is invoked first for an outbound request message but last for an inbound response message. An instance with the configured handlers. Creates a new instance configured with the handlers provided and with the provided as the innermost handler. The inner handler represents the destination of the HTTP message channel. An ordered list of instances to be invoked as an travels from the to the network and an travels from the network back to . The handlers are invoked in a top-down fashion. That is, the first entry is invoked first for an outbound request message but last for an inbound response message. An instance with the configured handlers. Creates an instance of an using the instances provided by . The resulting pipeline can be used to manually create or instances with customized message handlers. The inner handler represents the destination of the HTTP message channel. An ordered list of instances to be invoked as part of sending an and receiving an . The handlers are invoked in a top-down fashion. That is, the first entry is invoked first for an outbound request message but last for an inbound response message. The HTTP message channel. Extension methods to allow strongly typed objects to be read from instances. Returns a that will yield an object of the specified from the instance. This override use the built-in collection of formatters. The instance from which to read. The type of the object to read. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified from the instance. This override use the built-in collection of formatters. The instance from which to read. The type of the object to read. The token to monitor for cancellation requests. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified from the instance using one of the provided to deserialize the content. The instance from which to read. The type of the object to read. The collection of instances to use. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified from the instance using one of the provided to deserialize the content. The instance from which to read. The type of the object to read. The collection of instances to use. The token to monitor for cancellation requests. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified from the instance using one of the provided to deserialize the content. The instance from which to read. The type of the object to read. The collection of instances to use. The to log events to. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified from the instance using one of the provided to deserialize the content. The instance from which to read. The type of the object to read. The collection of instances to use. The to log events to. The token to monitor for cancellation requests. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified type from the instance. This override use the built-in collection of formatters. The type of the object to read. The instance from which to read. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified type from the instance. This override use the built-in collection of formatters. The type of the object to read. The instance from which to read. The token to monitor for cancellation requests. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified type from the instance. The type of the object to read. The instance from which to read. The collection of instances to use. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified type from the instance. The type of the object to read. The instance from which to read. The collection of instances to use. The token to monitor for cancellation requests. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified type from the instance. The type of the object to read. The instance from which to read. The collection of instances to use. The to log events to. A task object representing reading the content as an object of the specified type. Returns a that will yield an object of the specified type from the instance. The type of the object to read. The instance from which to read. The collection of instances to use. The to log events to. The token to monitor for cancellation requests. A task object representing reading the content as an object of the specified type. Extension methods to read and entities from instances. Determines whether the specified content is HTTP request message content. The content. true if the specified content is HTTP message content; otherwise, false. Determines whether the specified content is HTTP response message content. The content. true if the specified content is HTTP message content; otherwise, false. Read the as an . The content to read. A task object representing reading the content as an . Read the as an . The content to read. The token to monitor for cancellation requests. A task object representing reading the content as an . Read the as an . The content to read. The URI scheme to use for the request URI. A task object representing reading the content as an . Read the as an . The content to read. The URI scheme to use for the request URI. The token to monitor for cancellation requests. A task object representing reading the content as an . Read the as an . The content to read. The URI scheme to use for the request URI (the URI scheme is not actually part of the HTTP Request URI and so must be provided externally). Size of the buffer. A task object representing reading the content as an . Read the as an . The content to read. The URI scheme to use for the request URI (the URI scheme is not actually part of the HTTP Request URI and so must be provided externally). Size of the buffer. The token to monitor for cancellation requests. A task object representing reading the content as an . Read the as an . The content to read. The URI scheme to use for the request URI (the URI scheme is not actually part of the HTTP Request URI and so must be provided externally). Size of the buffer. The max length of the HTTP header. A task object representing reading the content as an . Read the as an . The content to read. The URI scheme to use for the request URI (the URI scheme is not actually part of the HTTP Request URI and so must be provided externally). Size of the buffer. The max length of the HTTP header. The token to monitor for cancellation requests. A task object representing reading the content as an . Read the as an . The content to read. A task object representing reading the content as an . Read the as an . The content to read. The token to monitor for cancellation requests. A task object representing reading the content as an . Read the as an . The content to read. Size of the buffer. A task object representing reading the content as an . Read the as an . The content to read. Size of the buffer. The token to monitor for cancellation requests. A task object representing reading the content as an . Read the as an . The content to read. Size of the buffer. The max length of the HTTP header. A task object representing reading the content as an . Read the as an . The content to read. Size of the buffer. The max length of the HTTP header. The token to monitor for cancellation requests. The parsed instance. Creates the request URI by combining scheme (provided) with parsed values of host and path. The URI scheme to use for the request URI. The unsorted HTTP request. A fully qualified request URI. Copies the unsorted header fields to a sorted collection. The unsorted source headers The destination or . The input used to form any being part of this HTTP request. Start location of any request entity within the . An instance if header fields contained and . Creates an based on information provided in . The URI scheme to use for the request URI. The unsorted HTTP request. The input used to form any being part of this HTTP request. Start location of any request entity within the . A newly created instance. Creates an based on information provided in . The unsorted HTTP Response. The input used to form any being part of this HTTP Response. Start location of any Response entity within the . A newly created instance. Extension methods to read MIME multipart entities from instances. Determines whether the specified content is MIME multipart content. The content. true if the specified content is MIME multipart content; otherwise, false. Determines whether the specified content is MIME multipart content with the specified subtype. For example, the subtype mixed would match content with a content type of multipart/mixed. The content. The MIME multipart subtype to match. true if the specified content is MIME multipart content with the specified subtype; otherwise, false. Reads all body parts within a MIME multipart message into memory using a . An existing instance to use for the object's content. A representing the tasks of getting the result of reading the MIME content. Reads all body parts within a MIME multipart message into memory using a . An existing instance to use for the object's content. The token to monitor for cancellation requests. A representing the tasks of getting the result of reading the MIME content. Reads all body parts within a MIME multipart message using the provided instance to determine where the contents of each body part is written. The with which to process the data. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. A representing the tasks of getting the result of reading the MIME content. Reads all body parts within a MIME multipart message using the provided instance to determine where the contents of each body part is written. The with which to process the data. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. The token to monitor for cancellation requests. A representing the tasks of getting the result of reading the MIME content. Reads all body parts within a MIME multipart message using the provided instance to determine where the contents of each body part is written and as read buffer size. The with which to process the data. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. Size of the buffer used to read the contents. A representing the tasks of getting the result of reading the MIME content. Reads all body parts within a MIME multipart message using the provided instance to determine where the contents of each body part is written and as read buffer size. The with which to process the data. An existing instance to use for the object's content. A stream provider providing output streams for where to write body parts as they are parsed. Size of the buffer used to read the contents. The token to monitor for cancellation requests. A representing the tasks of getting the result of reading the MIME content. Managing state for asynchronous read and write operations Gets the that we read from. Gets the collection of parsed instances. The data buffer that we use for reading data from the input stream into before processing. Gets the MIME parser instance used to parse the data Derived class which can encapsulate an or an as an entity with media type "application/http". Initializes a new instance of the class encapsulating an . The instance to encapsulate. Initializes a new instance of the class encapsulating an . The instance to encapsulate. Validates whether the content contains an HTTP Request or an HTTP Response. The content to validate. if set to true if the content is either an HTTP Request or an HTTP Response. Indicates whether validation failure should result in an or not. true if content is either an HTTP Request or an HTTP Response Asynchronously serializes the object's content to the given . The to which to write. The associated . A instance that is asynchronously serializing the object's content. Computes the length of the stream if possible. The computed length of the stream. true if the length has been computed; otherwise false. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Serializes the HTTP request line. Where to write the request line. The HTTP request. Serializes the HTTP status line. Where to write the status line. The HTTP response. Serializes the header fields. Where to write the status line. The headers to write. Gets the HTTP request message. Gets the HTTP response message. All of the existing non-abstract implementations, namely , , and enforce strict rules on what kinds of HTTP header fields can be added to each collection. When parsing the "application/http" media type we need to just get the unsorted list. It will get sorted later. Represents the HTTP Request Line and header parameters parsed by and . Initializes a new instance of the class. Gets or sets the HTTP method. The HTTP method. Gets or sets the HTTP request URI portion that is carried in the RequestLine (i.e the URI path + query). The request URI. Gets or sets the HTTP version. The HTTP version. Gets the unsorted HTTP request headers. Represents the HTTP Status Line and header parameters parsed by and . Initializes a new instance of the class. Gets or sets the HTTP version. The HTTP version. Gets or sets the The HTTP status code Gets or sets the HTTP reason phrase The response reason phrase Gets the unsorted HTTP request headers. This implements a read-only, forward-only stream around another readable stream, to ensure that there is an appropriate encoding preamble in the stream. Maintains information about MIME body parts parsed by . Initializes a new instance of the class. The stream provider. The max length of the MIME header within each MIME body part. The part's parent content Gets the part's content as an HttpContent. The part's content, or null if the part had no content. Writes the into the part's output stream. The current segment to be written to the part's output stream. The token to monitor for cancellation requests. Gets the output stream. The output stream to write the body part to. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. In the success case, the HttpContent is to be used after this Part has been parsed and disposed of. Only if Dispose has been called on a non-completed part, the parsed HttpContent needs to be disposed of as well. Resets the output stream by either closing it or, in the case of a resetting position to 0 so that it can be read by the caller. Gets the header parser. The header parser. Gets the set of pointing to the read buffer with contents of this body part. Gets or sets a value indicating whether the body part has been completed. true if this instance is complete; otherwise, false. Gets or sets a value indicating whether this is the final body part. true if this instance is complete; otherwise, false. Provides a implementation that returns a instance. This facilitates deserialization or other manipulation of the contents in memory. An implementation examines the headers provided by the MIME multipart parser as part of the MIME multipart extension methods (see ) and decides what kind of stream to return for the body part to be written to. Initializes a new instance of the class. When a MIME multipart body part has been parsed this method is called to get a stream for where to write the body part to. The parent MIME multipart instance. The header fields describing the body parts content. Looking for header fields such as Content-Type and Content-Disposition can help provide the appropriate stream. In addition to using the information in the provided header fields, it is also possible to add new header fields or modify existing header fields. This can be useful to get around situations where the Content-type may say application/octet-stream but based on analyzing the Content-Disposition header field it is found that the content in fact is application/json, for example. A stream instance where the contents of a body part will be written to. Immediately upon reading the last MIME body part but before completing the read task, this method is called to enable the to do any post processing on the instances that have been read. For example, it can be used to copy the data to another location, or perform some other kind of post processing on the data before completing the read operation. A representing the post processing. Immediately upon reading the last MIME body part but before completing the read task, this method is called to enable the to do any post processing on the instances that have been read. For example, it can be used to copy the data to another location, or perform some other kind of post processing on the data before completing the read operation. The token to monitor for cancellation requests. A representing the post processing. Gets the collection of instances where each instance represents a MIME body part. This implementation returns a instance. This facilitates deserialization or other manipulation of the contents in memory. An suited for reading MIME body parts following the multipart/related media type as defined in RFC 2387 (see http://www.ietf.org/rfc/rfc2387.txt). Looks for the "start" parameter of the parent's content type and then finds the corresponding child HttpContent with a matching Content-ID header field. The matching child or null if none found. Looks for a parameter in the . The matching parameter or null if none found. Gets the instance that has been marked as the root content in the MIME multipart related message using the start parameter. If no start parameter is present then pick the first of the children. Contains a value as well as an associated that will be used to serialize the value when writing this content. Initializes a new instance of the class. The type of object this instance will contain. The value of the object this instance will contain. The formatter to use when serializing the value. Initializes a new instance of the class. The type of object this instance will contain. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the content's Content-Type header. Can be null in which case the formatter's default content type will be used. Initializes a new instance of the class. The type of object this instance will contain. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the content's Content-Type header. Can be null in which case the formatter's default content type will be used. Asynchronously serializes the object's content to the given . The to which to write. The associated . A instance that is asynchronously serializing the object's content. Computes the length of the stream if possible. The computed length of the stream. true if the length has been computed; otherwise false. Gets the type of object managed by this instance. The formatter associated with this content instance. Gets or sets the value of the current . Generic form of . The type of object this class will contain. Initializes a new instance of the class. The value of the object this instance will contain. The formatter to use when serializing the value. Initializes a new instance of the class. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the content's Content-Type header. Can be null in which case the formatter's default content type will be used. Initializes a new instance of the class. The value of the object this instance will contain. The formatter to use when serializing the value. The authoritative value of the content's Content-Type header. Can be null in which case the formatter's default content type will be used. Provides an implementation that exposes an output which can be written to directly. The ability to push data to the output stream differs from the where data is pulled and not pushed. Initializes a new instance of the class. The action is called when an output stream has become available allowing the action to write to it directly. When the stream is closed, it will signal to the content that is has completed and the HTTP request or response will be completed. The action to call when an output stream is available. Initializes a new instance of the class. The action to call when an output stream is available. The stream is automatically closed when the return task is completed. Initializes a new instance of the class with the given media type. Initializes a new instance of the class with the given media type. Initializes a new instance of the class with the given . Initializes a new instance of the class with the given . When this method is called, it calls the action provided in the constructor with the output stream to write to. Once the action has completed its work it closes the stream which will close this content instance and complete the HTTP request or response. The to which to write. The associated . A instance that is asynchronously serializing the object's content. Computes the length of the stream if possible. The computed length of the stream. true if the length has been computed; otherwise false. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to Async Callback threw an exception.. Looks up a localized string similar to The IAsyncResult implementation '{0}' tried to complete a single operation multiple times. This could be caused by an incorrect application IAsyncResult implementation or other extensibility code, such as an IAsyncResult that returns incorrect CompletedSynchronously values or invokes the AsyncCallback multiple times.. Looks up a localized string similar to End cannot be called twice on an AsyncResult.. Looks up a localized string similar to An incorrect IAsyncResult was provided to an 'End' method. The IAsyncResult object passed to 'End' must be the one returned from the matching 'Begin' or passed to the callback provided to 'Begin'.. Looks up a localized string similar to Found zero byte ranges. There must be at least one byte range provided.. Looks up a localized string similar to The range unit '{0}' is not valid. The range must have a unit of '{1}'.. Looks up a localized string similar to The stream over which '{0}' provides a range view must have a length greater than or equal to 1.. Looks up a localized string similar to The 'From' value of the range must be less than or equal to {0}.. Looks up a localized string similar to None of the requested ranges ({0}) overlap with the current extent of the selected resource.. Looks up a localized string similar to The requested range ({0}) does not overlap with the current extent of the selected resource.. Looks up a localized string similar to The stream over which '{0}' provides a range view must be seekable.. Looks up a localized string similar to This is a read-only stream.. Looks up a localized string similar to A null '{0}' is not valid.. Looks up a localized string similar to The '{0}' of '{1}' cannot be used as a supported media type because it is a media range.. Looks up a localized string similar to The '{0}' type cannot accept a null value for the value type '{1}'.. Looks up a localized string similar to The specified value is not a valid cookie name.. Looks up a localized string similar to Cookie cannot be null.. Looks up a localized string similar to The '{0}' list is invalid because it contains one or more null items.. Looks up a localized string similar to The '{0}' list is invalid because the property '{1}' of '{2}' is not null.. Looks up a localized string similar to Error reading HTML form URL-encoded data stream.. Looks up a localized string similar to Mismatched types at node '{0}'.. Looks up a localized string similar to Error parsing HTML form URL-encoded data, byte {0}.. Looks up a localized string similar to Invalid HTTP status code: '{0}'. The status code must be between {1} and {2}.. Looks up a localized string similar to Invalid HTTP version: '{0}'. The version must start with the characters '{1}'.. Looks up a localized string similar to The '{0}' of the '{1}' has already been read.. Looks up a localized string similar to The '{0}' must be seekable in order to create an '{1}' instance containing an entity body. . Looks up a localized string similar to Error reading HTTP message.. Looks up a localized string similar to Invalid '{0}' instance provided. It does not have a content type header with a value of '{1}'.. Looks up a localized string similar to HTTP Request URI cannot be an empty string.. Looks up a localized string similar to Error parsing HTTP message header byte {0} of message {1}.. Looks up a localized string similar to An invalid number of '{0}' header fields were present in the HTTP Request. It must contain exactly one '{0}' header field but found {1}.. Looks up a localized string similar to Invalid URI scheme: '{0}'. The URI scheme must be a valid '{1}' scheme.. Looks up a localized string similar to Invalid array at node '{0}'.. Looks up a localized string similar to Traditional style array without '[]' is not supported with nested object at location {0}.. Looks up a localized string similar to The '{0}' method returned null. It must return a JSON serializer instance.. Looks up a localized string similar to The '{0}' method threw an exception when attempting to create a JSON serializer.. Looks up a localized string similar to The maximum read depth ({0}) has been exceeded because the form url-encoded data being read has more levels of nesting than is allowed.. Looks up a localized string similar to The number of keys in a NameValueCollection has exceeded the limit of '{0}'. You can adjust it by modifying the MaxHttpCollectionKeys property on the '{1}' class.. Looks up a localized string similar to Error parsing BSON data; unable to read content as a {0}.. Looks up a localized string similar to Error parsing BSON data; unexpected dictionary content: {0} entries, first key '{1}'.. Looks up a localized string similar to The '{0}' method returned null. It must return a JSON reader instance.. Looks up a localized string similar to The '{0}' method returned null. It must return a JSON writer instance.. Looks up a localized string similar to The media type formatter of type '{0}' does not support reading because it does not implement the ReadFromStreamAsync method.. Looks up a localized string similar to The media type formatter of type '{0}' does not support reading because it does not implement the ReadFromStream method.. Looks up a localized string similar to The media type formatter of type '{0}' does not support writing because it does not implement the WriteToStreamAsync method.. Looks up a localized string similar to The media type formatter of type '{0}' does not support writing because it does not implement the WriteToStream method.. Looks up a localized string similar to No encoding found for media type formatter '{0}'. There must be at least one supported encoding registered in order for the media type formatter to read or write content.. Looks up a localized string similar to MIME multipart boundary cannot end with an empty space.. Looks up a localized string similar to Did not find required '{0}' header field in MIME multipart body part.. Looks up a localized string similar to Could not determine a valid local file name for the multipart body part.. Looks up a localized string similar to Nested bracket is not valid for '{0}' data at position {1}.. Looks up a localized string similar to A non-null request URI must be provided to determine if a '{0}' matches a given request or response message.. Looks up a localized string similar to No MediaTypeFormatter is available to read an object of type '{0}' from content with media type '{1}'.. Looks up a localized string similar to An object of type '{0}' cannot be used with a type parameter of '{1}'.. Looks up a localized string similar to The configured formatter '{0}' cannot write an object of type '{1}'.. Looks up a localized string similar to Query string name cannot be null.. Looks up a localized string similar to Unexpected end of HTTP message stream. HTTP message is not complete.. Looks up a localized string similar to Invalid '{0}' instance provided. It does not have a '{1}' content-type header with a '{2}' parameter.. Looks up a localized string similar to Invalid '{0}' instance provided. It does not have a content-type header value. '{0}' instances must have a content-type header starting with '{1}'.. Looks up a localized string similar to Invalid '{0}' instance provided. It does not have a content type header starting with '{1}'.. Looks up a localized string similar to Error reading MIME multipart body part.. Looks up a localized string similar to Error writing MIME multipart body part to output stream.. Looks up a localized string similar to Error parsing MIME multipart body part header byte {0} of data segment {1}.. Looks up a localized string similar to Error parsing MIME multipart message byte {0} of data segment {1}.. Looks up a localized string similar to The stream provider of type '{0}' threw an exception.. Looks up a localized string similar to The stream provider of type '{0}' returned null. It must return a writable '{1}' instance.. Looks up a localized string similar to The stream provider of type '{0}' returned a read-only stream. It must return a writable '{1}' instance.. Looks up a localized string similar to Unexpected end of MIME multipart stream. MIME multipart message is not complete.. Looks up a localized string similar to The '{0}' serializer cannot serialize the type '{1}'.. Looks up a localized string similar to There is an unmatched opened bracket for the '{0}' at position {1}.. Looks up a localized string similar to Indentation is not supported by '{0}'.. Looks up a localized string similar to The object of type '{0}' returned by {1} must be an instance of either XmlObjectSerializer or XmlSerializer.. Looks up a localized string similar to The object returned by {0} must not be a null value.. Defines an exception type for signalling that a request's media type was not supported. Initializes a new instance of the class. The message that describes the error. The unsupported media type. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to Relative URI values are not supported: '{0}'. The URI must be absolute.. Looks up a localized string similar to Unsupported URI scheme: '{0}'. The URI scheme must be either '{1}' or '{2}'.. Looks up a localized string similar to Value must be greater than or equal to {0}.. Looks up a localized string similar to Value must be less than or equal to {0}.. Looks up a localized string similar to The argument '{0}' is null or empty.. Looks up a localized string similar to URI must not contain a query component or a fragment identifier.. Looks up a localized string similar to The value of argument '{0}' ({1}) is invalid for Enum type '{2}'.. ================================================ FILE: packages/Microsoft.AspNet.WebApi.Core.5.2.2/Content/web.config.transform ================================================  ================================================ FILE: packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.xml ================================================  System.Web.Http Creates an that represents an exception. The request must be associated with an instance.An whose content is a serialized representation of an instance. The HTTP request. The status code of the response. The exception. Creates an that represents an error message. The request must be associated with an instance.An whose content is a serialized representation of an instance. The HTTP request. The status code of the response. The error message. Creates an that represents an exception with an error message. The request must be associated with an instance.An whose content is a serialized representation of an instance. The HTTP request. The status code of the response. The error message. The exception. Creates an that represents an error. The request must be associated with an instance.An whose content is a serialized representation of an instance. The HTTP request. The status code of the response. The HTTP error. Creates an that represents an error in the model state. The request must be associated with an instance.An whose content is a serialized representation of an instance. The HTTP request. The status code of the response. The model state. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The type of the HTTP response message. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The media type formatter. The type of the HTTP response message. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The media type formatter. The media type header value. The type of the HTTP response message. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The media type formatter. The media type. The type of the HTTP response message. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The media type header value. The type of the HTTP response message. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The media type. The type of the HTTP response message. Creates an wired up to the associated . An initialized wired up to the associated . The HTTP request message which led to this response message. The HTTP response status code. The content of the HTTP response message. The HTTP configuration which contains the dependency resolver used to resolve services. The type of the HTTP response message. Disposes of all tracked resources associated with the which were added via the method. The HTTP request. Gets the current X.509 certificate from the given HTTP request. The current , or null if a certificate is not available. The HTTP request. Retrieves the for the given request. The for the given request. The HTTP request. Retrieves the which has been assigned as the correlation ID associated with the given . The value will be created and set the first time this method is called. The object that represents the correlation ID associated with the request. The HTTP request. Retrieves the for the given request or null if not available. The for the given request or null if not available. The HTTP request. Gets the parsed query string as a collection of key-value pairs. The query string as a collection of key-value pairs. The HTTP request. Retrieves the for the given request or null if not available. The for the given request or null if not available. The HTTP request. Retrieves the for the given request or null if not available. The for the given request or null if not available. The HTTP request. Gets a instance for an HTTP request. A instance that is initialized for the specified HTTP request. The HTTP request. Adds the given to a list of resources that will be disposed by a host once the is disposed. The HTTP request controlling the lifecycle of . The resource to dispose when is being disposed. Represents the message extensions for the HTTP response from an ASP.NET operation. Attempts to retrieve the value of the content for the . The result of the retrieval of value of the content. The response of the operation. The value of the content. The type of the value to retrieve. Represents extensions for adding items to a . Provides s from path extensions appearing in a . Initializes a new instance of the class. The extension corresponding to mediaType. This value should not include a dot or wildcards. The that will be returned if uriPathExtension is matched. Initializes a new instance of the class. The extension corresponding to mediaType. This value should not include a dot or wildcards. The media type that will be returned if uriPathExtension is matched. Returns a value indicating whether this instance can provide a for the of request. If this instance can match a file extension in request it returns 1.0 otherwise 0.0. The to check. Gets the path extension. The path extension. The path extension key. Represents an attribute that specifies which HTTP methods an action method will respond to. Initializes a new instance of the class by using the action method it will respond to. The HTTP method that the action method will respond to. Initializes a new instance of the class by using a list of HTTP methods that the action method will respond to. The HTTP methods that the action method will respond to. Gets or sets the list of HTTP methods that the action method will respond to. Gets or sets the list of HTTP methods that the action method will respond to. Represents an attribute that is used for the name of an action. Initializes a new instance of the class. The name of the action. Gets or sets the name of the action. The name of the action. Specifies that actions and controllers are skipped by during authorization. Initializes a new instance of the class. Defines properties and methods for API controller. Gets the action context. The action context. Creates a . A . Creates an (400 Bad Request) with the specified error message. An with the specified model state. The user-visible error message. Creates an with the specified model state. An with the specified model state. The model state to include in the error. Gets the of the current . The of the current . Creates a (409 Conflict). A . Creates a <see cref="T:System.Web.Http.NegotiatedContentResult`1" /> with the specified values. A <see cref="T:System.Web.Http.NegotiatedContentResult`1" /> with the specified values. The HTTP status code for the response message. The content value to negotiate and format in the entity body. The type of content in the entity body. Creates a <see cref="T:System.Web.Http.FormattedContentResult`1" /> with the specified values. A <see cref="T:System.Web.Http.FormattedContentResult`1" /> with the specified values. The HTTP status code for the response message. The content value to format in the entity body. The formatter to use to format the content. The type of content in the entity body. Creates a <see cref="T:System.Web.Http.FormattedContentResult`1" /> with the specified values. A <see cref="T:System.Web.Http.FormattedContentResult`1" /> with the specified values. The HTTP status code for the response message. The content value to format in the entity body. The formatter to use to format the content. The value for the Content-Type header, or <see langword="null" /> to have the formatter pick a default value. The type of content in the entity body. Creates a <see cref="T:System.Web.Http.FormattedContentResult`1" /> with the specified values. A <see cref="T:System.Web.Http.FormattedContentResult`1" /> with the specified values. The HTTP status code for the response message. The content value to format in the entity body. The formatter to use to format the content. The value for the Content-Type header. The type of content in the entity body. Gets the of the current . The of the current . Creates a (201 Created) with the specified values. A with the specified values. The location at which the content has been created. The content value to negotiate and format in the entity body. The type of content in the entity body. Creates a (201 Created) with the specified values. A with the specified values. The location at which the content has been created. The content value to negotiate and format in the entity body. The type of content in the entity body. Creates a (201 Created) with the specified values. A with the specified values. The name of the route to use for generating the URL. The route data to use for generating the URL. The content value to negotiate and format in the entity body. The type of content in the entity body. Creates a (201 Created) with the specified values. A with the specified values. The name of the route to use for generating the URL. The route data to use for generating the URL. The content value to negotiate and format in the entity body. The type of content in the entity body. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases the unmanaged resources that are used by the object and, optionally, releases the managed resources. true to release both managed and unmanaged resources; false to release only unmanaged resources. Executes asynchronously a single HTTP operation. The newly started task. The controller context for a single HTTP operation. The cancellation token assigned for the HTTP operation. Initializes the instance with the specified controllerContext. The object that is used for the initialization. Creates an (500 Internal Server Error). A . Creates an (500 Internal Server Error) with the specified exception. An with the specified exception. The exception to include in the error. Creates a (200 OK) with the specified value. A with the specified value. The content value to serialize in the entity body. The type of content in the entity body. Creates a (200 OK) with the specified values. A with the specified values. The content value to serialize in the entity body. The serializer settings. The type of content in the entity body. Creates a (200 OK) with the specified values. A with the specified values. The content value to serialize in the entity body. The serializer settings. The content encoding. The type of content in the entity body. Gets the model state after the model binding process. The model state after the model binding process. Creates a . A . Creates an (200 OK). An . Creates an with the specified values. An with the specified values. The content value to negotiate and format in the entity body. The type of content in the entity body. Creates a redirect result (302 Found) with the specified value. A redirect result (302 Found) with the specified value. The location to redirect to. Creates a redirect result (302 Found) with the specified value. A redirect result (302 Found) with the specified value. The location to redirect to. Creates a redirect to route result (302 Found) with the specified values. A redirect to route result (302 Found) with the specified values. The name of the route to use for generating the URL. The route data to use for generating the URL. Creates a redirect to route result (302 Found) with the specified values. A redirect to route result (302 Found) with the specified values. The name of the route to use for generating the URL. The route data to use for generating the URL. Gets or sets the HttpRequestMessage of the current . The HttpRequestMessage of the current . Gets the request context. The request context. Creates a with the specified response. A for the specified response. The HTTP response message. Creates a with the specified status code. A with the specified status code. The HTTP status code for the response message Creates an (401 Unauthorized) with the specified values. An with the specified values. The WWW-Authenticate challenges. Creates an (401 Unauthorized) with the specified values. An with the specified values. The WWW-Authenticate challenges. Gets an instance of a , which is used to generate URLs to other APIs. A , which is used to generate URLs to other APIs. Returns the current principal associated with this request. The current principal associated with this request. Validates the given entity and adds the validation errors to the model state under the empty prefix, if any. The entity being validated. The type of the entity to be validated. Validates the given entity and adds the validation errors to the model state, if any. The entity being validated. The key prefix under which the model state errors would be added in the model state. The type of the entity to be validated. Specifies the authorization filter that verifies the request's . Initializes a new instance of the class. Processes requests that fail authorization. The context. Indicates whether the specified control is authorized. true if the control is authorized; otherwise, false. The context. Calls when an action is being authorized. The context. The context parameter is null. Gets or sets the authorized roles. The roles string. Gets a unique identifier for this attribute. A unique identifier for this attribute. Gets or sets the authorized users. The users string. An attribute that specifies that an action parameter comes only from the entity body of the incoming . Initializes a new instance of the class. Gets a parameter binding. The parameter binding. The parameter description. An attribute that specifies that an action parameter comes from the URI of the incoming . Initializes a new instance of the class. Gets the value provider factories for the model binder. A collection of objects. The configuration. Represents attributes that specifies that HTTP binding should exclude a property. Initializes a new instance of the class. Represents the required attribute for http binding. Initializes a new instance of the class. Represents a configuration of instances. Initializes a new instance of the class. Initializes a new instance of the class with an HTTP route collection. The HTTP route collection to associate with this instance. Gets or sets the dependency resolver associated with thisinstance. The dependency resolver. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases the unmanaged resources that are used by the object and, optionally, releases the managed resources. true to release both managed and unmanaged resources; false to release only unmanaged resources. Invoke the Intializer hook. It is considered immutable from this point forward. It's safe to call this multiple times. Gets the list of filters that apply to all requests served using this instance. The list of filters. Gets the media-type formatters for this instance. A collection of objects. Gets or sets a value indicating whether error details should be included in error messages. The value that indicates that error detail policy. Gets or sets the action that will perform final initialization of the instance before it is used to process requests. The action that will perform final initialization of the instance. Gets an ordered list of instances to be invoked as an travels up the stack and an travels down in stack in return. The message handler collection. Gets the collection of rules for how parameters should be bound. A collection of functions that can produce a parameter binding for a given parameter. Gets the properties associated with this instance. The that contains the properties. Gets the associated with this instance. The . Gets the container of default services associated with this instance. The that contains the default services for this instance. Gets the root virtual path. The root virtual path. Contains extension methods for the class. Maps the attribute-defined routes for the application. The server configuration. The to use for discovering and building routes. Maps the attribute-defined routes for the application. The server configuration. The constraint resolver. Maps the attribute-defined routes for the application. The server configuration. The to use for resolving inline constraints. The to use for discovering and building routes. Specifies that an action supports the DELETE HTTP method. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. Defines a serializable container for storing error information. This information is stored as key/value pairs. The dictionary keys to look up standard error information are available on the type. Initializes a new instance of the class. Initializes a new instance of the class for . The exception to use for error information. true to include the exception information in the error; false otherwise Initializes a new instance of the class containing error message . The error message to associate with this instance. Initializes a new instance of the class for . The invalid model state to use for error information. true to include exception messages in the error; false otherwise Gets or sets the message of the if available. The message of the if available. Gets or sets the type of the if available. The type of the if available. Gets a particular property value from this error instance. A particular property value from this error instance. The name of the error property. The type of the property. Gets the inner associated with this instance if available. The inner associated with this instance if available. Gets or sets the high-level, user-visible message explaining the cause of the error. Information carried in this field should be considered public in that it will go over the wire regardless of the . As a result care should be taken not to disclose sensitive information about the server or the application. The high-level, user-visible message explaining the cause of the error. Information carried in this field should be considered public in that it will go over the wire regardless of the . As a result care should be taken not to disclose sensitive information about the server or the application. Gets or sets a detailed description of the error intended for the developer to understand exactly what failed. A detailed description of the error intended for the developer to understand exactly what failed. Gets the containing information about the errors that occurred during model binding. The containing information about the errors that occurred during model binding. Gets or sets the stack trace information associated with this instance if available. The stack trace information associated with this instance if available. This method is reserved and should not be used. Always returns null. Generates an instance from its XML representation. The XmlReader stream from which the object is deserialized. Converts an instance into its XML representation. The XmlWriter stream to which the object is serialized. Provides keys to look up error information stored in the dictionary. Provides a key for the ErrorCode. Provides a key for the ExceptionMessage. Provides a key for the ExceptionType. Provides a key for the InnerException. Provides a key for the MessageDetail. Provides a key for the Message. Provides a key for the MessageLanguage. Provides a key for the ModelState. Provides a key for the StackTrace. Specifies that an action supports the GET HTTP method. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. Specifies that an action supports the HEAD HTTP method. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. Represents an attribute that is used to restrict an HTTP method so that the method handles only HTTP OPTIONS requests. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. Specifies that an action supports the PATCH HTTP method. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. Specifies that an action supports the POST HTTP method. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. Represents an attribute that is used to restrict an HTTP method so that the method handles only HTTP PUT requests. Initializes a new instance of the class. Gets the http methods that correspond to this attribute. The http methods that correspond to this attribute. An exception that allows for a given to be returned to the client. Initializes a new instance of the class. The HTTP response to return to the client. Initializes a new instance of the class. The status code of the response. Gets the HTTP response to return to the client. The that represents the HTTP response. A collection of instances. Initializes a new instance of the class. Initializes a new instance of the class. The virtual path root. Adds an instance to the collection. The name of the route. The instance to add to the collection. Removes all items from the collection. Determines whether the collection contains a specific . true if the is found in the collection; otherwise, false. The object to locate in the collection. Determines whether the collection contains an element with the specified key. true if the collection contains an element with the key; otherwise, false. The key to locate in the collection. Copies the instances of the collection to an array, starting at a particular array index. The array that is the destination of the elements copied from the collection. The zero-based index in at which copying begins. Copies the route names and instances of the collection to an array, starting at a particular array index. The array that is the destination of the elements copied from the collection. The zero-based index in at which copying begins. Gets the number of items in the collection. The number of items in the collection. Creates an instance. The new instance. The route template. An object that contains the default route parameters. An object that contains the route constraints. The route data tokens. Creates an instance. The new instance. The route template. An object that contains the default route parameters. An object that contains the route constraints. The route data tokens. The message handler for the route. Creates an instance. The new instance. The route template. An object that contains the default route parameters. An object that contains the route constraints. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases the unmanaged resources that are used by the object and, optionally, releases the managed resources. true to release both managed and unmanaged resources; false to release only unmanaged resources. Returns an enumerator that iterates through the collection. An that can be used to iterate through the collection. Gets the route data for a specified HTTP request. An instance that represents the route data. The HTTP request. Gets a virtual path. An instance that represents the virtual path. The HTTP request. The route name. The route values. Inserts an instance into the collection. The zero-based index at which should be inserted. The route name. The to insert. The value cannot be null. Gets a value indicating whether the collection is read-only. true if the collection is read-only; otherwise, false. Gets or sets the element at the specified index. The at the specified index. The index. Gets or sets the element with the specified route name. The at the specified index. The route name. Called internally to get the enumerator for the collection. An that can be used to iterate through the collection. Removes an instance from the collection. true if the element is successfully removed; otherwise, false. This method also returns false if was not found in the collection. The name of the route to remove. Adds an item to the collection. The object to add to the collection. Removes the first occurrence of a specific object from the collection. true if was successfully removed from the collection; otherwise, false. This method also returns false if is not found in the original collection. The object to remove from the collection. Returns an enumerator that iterates through the collection. An object that can be used to iterate through the collection. Gets the with the specified route name. true if the collection contains an element with the specified name; otherwise, false. The route name. When this method returns, contains the instance, if the route name is found; otherwise, null. This parameter is passed uninitialized. Validates that a constraint is valid for an created by a call to the method. The route template. The constraint name. The constraint object. Gets the virtual path root. The virtual path root. Extension methods for Ignores the specified route. Returns . A collection of routes for the application. The name of the route to ignore. The route template for the route. Ignores the specified route. Returns . A collection of routes for the application. The name of the route to ignore. The route template for the route. A set of expressions that specify values for the route template. Maps the specified route for handling HTTP batch requests. A collection of routes for the application. The name of the route to map. The route template for the route. The for handling batch requests. Maps the specified route template. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. Maps the specified route template and sets default route values. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. An object that contains default route values. Maps the specified route template and sets default route values and constraints. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. An object that contains default route values. A set of expressions that specify values for . Maps the specified route template and sets default route values, constraints, and end-point message handler. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. An object that contains default route values. A set of expressions that specify values for . The handler to which the request will be dispatched. Defines an implementation of an which dispatches an incoming and creates an as a result. Initializes a new instance of the class, using the default configuration and dispatcher. Initializes a new instance of the class with a specified dispatcher. The HTTP dispatcher that will handle incoming requests. Initializes a new instance of the class with a specified configuration. The used to configure this instance. Initializes a new instance of the class with a specified configuration and dispatcher. The used to configure this instance. The HTTP dispatcher that will handle incoming requests. Gets the used to configure this instance. The used to configure this instance. Gets the HTTP dispatcher that handles incoming requests. The HTTP dispatcher that handles incoming requests. Releases the unmanaged resources that are used by the object and, optionally, releases the managed resources. true to release both managed and unmanaged resources; false to release only unmanaged resources. Prepares the server for operation. Dispatches an incoming . A task representing the asynchronous operation. The request to dispatch. The token to monitor for cancellation requests. Defines a command that asynchronously creates an . Creates an asynchronously. A task that, when completed, contains the . The token to monitor for cancellation requests. Specifies whether error details, such as exception messages and stack traces, should be included in error messages. Always include error details. Use the default behavior for the host environment. For ASP.NET hosting, use the value from the customErrors element in the Web.config file. For self-hosting, use the value . Only include error details when responding to a local request. Never include error details. Represents an attribute that is used to indicate that a controller method is not an action method. Initializes a new instance of the class. Represents a filter attribute that overrides action filters defined at a higher level. Initializes a new instance of the class. Gets a value indicating whether the action filter allows multiple attribute. true if the action filter allows multiple attribute; otherwise, false. Gets the type of filters to override. The type of filters to override. Represents a filter attribute that overrides authentication filters defined at a higher level. Represents a filter attribute that overrides authorization filters defined at a higher level. Initializes a new instance of the class. Gets or sets a Boolean value indicating whether more than one instance of the indicated attribute can be specified for a single program element. true if more than one instance is allowed to be specified; otherwise, false. Gets the type to filters override attributes. The type to filters override attributes. Represents a filter attribute that overrides exception filters defined at a higher level. Attribute on a parameter or type that produces a . If the attribute is on a type-declaration, then it's as if that attribute is present on all action parameters of that type. Initializes a new instance of the class. Gets the parameter binding. The parameter binding. The parameter description. Place on an action to expose it directly via a route. Initializes a new instance of the class. Initializes a new instance of the class. The route template describing the URI pattern to match against. Returns . Returns . Returns . The class can be used to indicate properties about a route parameter (the literals and placeholders located within segments of a ). It can for example be used to indicate that a route parameter is optional. An optional parameter. Returns a that represents this instance. A that represents this instance. Annotates a controller with a route prefix that applies to all actions within the controller. Initializes a new instance of the class. Initializes a new instance of the class. The route prefix for the controller. Gets the route prefix. Provides type-safe accessors for services obtained from a object. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Returns the registered unhandled exception handler, if any. The registered unhandled exception hander, if present; otherwise, null. The services container. Returns the collection of registered unhandled exception loggers. The collection of registered unhandled exception loggers. The services container. Gets the collection. Returns a collection of objects. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance, or null if no instance was registered. The services container. Gets the service. Returns an instance. The services container. Gets the service. Returns an instance. The services container. Gets the collection. Returns a collection of objects. The services container. Gets the service. Returns an instance. The services container. Gets the collection. Returns a collection ofobjects. The services container. Gets the service. Returns aninstance. The services container. Gets the service. Returns aninstance. The services container. Gets the collection. Returns a collection of objects. The services container. Represents an containing zero or one entities. Use together with an [EnableQuery] from the System.Web.Http.OData or System.Web.OData namespace. Initializes a new instance of the class. The containing zero or one entities. Creates a from an . A helper method to instantiate a object without having to explicitly specify the type . The created . The containing zero or one entities. The type of the data in the data source. The containing zero or one entities. Represents an containing zero or one entities. Use together with an [EnableQuery] from the System.Web.Http.OData or System.Web.OData namespace. The type of the data in the data source. Initializes a new instance of the class. The containing zero or one entities. The containing zero or one entities. Defines the order of execution for batch requests. Executes the batch requests non-sequentially. Executes the batch requests sequentially. Provides extension methods for the class. Copies the properties from another . The sub-request. The batch request that contains the properties to copy. Represents the default implementation of that encodes the HTTP request/response messages as MIME multipart. Initializes a new instance of the class. The for handling the individual batch requests. Creates the batch response message. The batch response message. The responses for the batch requests. The original request containing all the batch requests. The cancellation token. Executes the batch request messages. A collection of for the batch requests. The collection of batch request messages. The cancellation token. Gets or sets the execution order for the batch requests. The default execution order is sequential. The execution order for the batch requests. The default execution order is sequential. Converts the incoming batch request into a collection of request messages. A collection of . The request containing the batch request messages. The cancellation token. Processes the batch requests. The result of the operation. The batch request. The cancellation token. Gets the supported content types for the batch request. The supported content types for the batch request. Validates the incoming request that contains the batch request messages. The request containing the batch request messages. Defines the abstraction for handling HTTP batch requests. Initializes a new instance of the class. The for handling the individual batch requests. Gets the invoker to send the batch requests to the . The invoker to send the batch requests to the . Processes the incoming batch request as a single . The batch response. The batch request. The cancellation token. Sends the batch handler asynchronously. The result of the operation. the send request. The cancelation token. Invokes the action methods of a controller. Initializes a new instance of the class. Asynchronously invokes the specified action by using the specified controller context. The invoked action. The controller context. The cancellation token. Represents a reflection based action selector. Initializes a new instance of the class. Gets the action mappings for the . The action mappings. The information that describes a controller. Selects an action for the . The selected action. The controller context. Represents a container for services that can be specific to a controller. This shadows the services from its parent . A controller can either set a service here, or fall through to the more global set of services. Initializes a new instance of the class. The parent services container. Removes a single-instance service from the default services. The type of service. Gets a service of the specified type. The first instance of the service, or null if the service is not found. The type of service. Gets the list of service objects for a given service type, and validates the service type. The list of service objects of the specified type. The service type. Gets the list of service objects for a given service type. The list of service objects of the specified type, or an empty list if the service is not found. The type of service. Queries whether a service type is single-instance. true if the service type has at most one instance, or false if the service type supports multiple instances. The service type. Replaces a single-instance service object. The service type. The service object that replaces the previous instance. Describes *how* the binding will happen and does not actually bind. Initializes a new instance of the class. Initializes a new instance of the class. The back pointer to the action this binding is for. The synchronous bindings for each parameter. Gets or sets the back pointer to the action this binding is for. The back pointer to the action this binding is for. Executes asynchronously the binding for the given request context. Task that is signaled when the binding is complete. The action context for the binding. This contains the parameter dictionary that will get populated. The cancellation token for cancelling the binding operation. Or a binder can also bind a parameter to this. Gets or sets the synchronous bindings for each parameter. The synchronous bindings for each parameter. Contains information for the executing action. Initializes a new instance of the class. Initializes a new instance of the class. The controller context. The action descriptor. Gets a list of action arguments. A list of action arguments. Gets or sets the action descriptor for the action context. The action descriptor. Gets or sets the controller context. The controller context. Gets the model state dictionary for the context. The model state dictionary. Gets the request message for the action context. The request message for the action context. Gets the current request context. The current request context. Gets or sets the response message for the action context. The response message for the action context. Contains extension methods for . Provides information about the action methods. Initializes a new instance of the class. Initializes a new instance of the class with specified information that describes the controller of the action.. The information that describes the controller of the action. Gets or sets the binding that describes the action. The binding that describes the action. Gets the name of the action. The name of the action. Gets or sets the action configuration. The action configuration. Gets the information that describes the controller of the action. The information that describes the controller of the action. Executes the described action and returns a that once completed will contain the return value of the action. A that once completed will contain the return value of the action. The controller context. A list of arguments. The cancellation token. Returns the custom attributes associated with the action descriptor. The custom attributes associated with the action descriptor. The action descriptor. Gets the custom attributes for the action. The collection of custom attributes applied to this action. true to search this action's inheritance chain to find the attributes; otherwise, false. The type of attribute to search for. Retrieves the filters for the given configuration and action. The filters for the given configuration and action. Retrieves the filters for the action descriptor. The filters for the action descriptor. Retrieves the parameters for the action descriptor. The parameters for the action descriptor. Gets the properties associated with this instance. The properties associated with this instance. Gets the converter for correctly transforming the result of calling ExecuteAsync(HttpControllerContext, IDictionaryString, Object)" into an instance of . The action result converter. Gets the return type of the descriptor. The return type of the descriptor. Gets the collection of supported HTTP methods for the descriptor. The collection of supported HTTP methods for the descriptor. Contains information for a single HTTP operation. Initializes a new instance of the class. Initializes a new instance of the class. The request context. The HTTP request. The controller descriptor. The controller. Initializes a new instance of the class. The configuration. The route data. The request. Gets or sets the configuration. The configuration. Gets or sets the HTTP controller. The HTTP controller. Gets or sets the controller descriptor. The controller descriptor. Gets or sets the request. The request. Gets or sets the request context. Gets or sets the route data. The route data. Represents information that describes the HTTP controller. Initializes a new instance of the class. Initializes a new instance of the class. The configuration. The controller name. The controller type. Gets or sets the configurations associated with the controller. The configurations associated with the controller. Gets or sets the name of the controller. The name of the controller. Gets or sets the type of the controller. The type of the controller. Creates a controller instance for the given . The created controller instance. The request message. Retrieves a collection of custom attributes of the controller. A collection of custom attributes. The type of the object. Returns a collection of attributes that can be assigned to <typeparamref name="T" /> for this descriptor's controller. A collection of attributes associated with this controller. true to search this controller's inheritance chain to find the attributes; otherwise, false. Used to filter the collection of attributes. Use a value of to retrieve all attributes. Returns a collection of filters associated with the controller. A collection of filters associated with the controller. Gets the properties associated with this instance. The properties associated with this instance. Contains settings for an HTTP controller. Initializes a new instance of the class. A configuration object that is used to initialize the instance. Gets the collection of instances for the controller. The collection of instances. Gets the collection of parameter bindingfunctions for for the controller. The collection of parameter binding functions. Gets the collection of service instances for the controller. The collection of service instances. Describes how a parameter is bound. The binding should be static (based purely on the descriptor) and can be shared across requests. Initializes a new instance of the class. An that describes the parameters. Gets the that was used to initialize this instance. The instance. If the binding is invalid, gets an error message that describes the binding error. An error message. If the binding was successful, the value is null. Asynchronously executes the binding for the given request. A task object representing the asynchronous operation. Metadata provider to use for validation. The action context for the binding. The action context contains the parameter dictionary that will get populated with the parameter. Cancellation token for cancelling the binding operation. Gets the parameter value from argument dictionary of the action context. The value for this parameter in the given action context, or null if the parameter has not yet been set. The action context. Gets a value that indicates whether the binding was successful. true if the binding was successful; otherwise, false. Sets the result of this parameter binding in the argument dictionary of the action context. The action context. The parameter value. Returns a value indicating whether this instance will read the entity body of the HTTP message. true if this will read the entity body; otherwise, false. Represents the HTTP parameter descriptor. Initializes a new instance of the class. Initializes a new instance of the class. The action descriptor. Gets or sets the action descriptor. The action descriptor. Gets or sets the for the . The for the . Gets the default value of the parameter. The default value of the parameter. Retrieves a collection of the custom attributes from the parameter. A collection of the custom attributes from the parameter. The type of the custom attributes. Gets a value that indicates whether the parameter is optional. true if the parameter is optional; otherwise, false. Gets or sets the parameter binding attribute. The parameter binding attribute. Gets the name of the parameter. The name of the parameter. Gets the type of the parameter. The type of the parameter. Gets the prefix of this parameter. The prefix of this parameter. Gets the properties of this parameter. The properties of this parameter. Represents the context associated with a request. Initializes a new instance of the class. Gets or sets the client certificate. Returns . Gets or sets the configuration. Returns . Gets or sets a value indicating whether error details, such as exception messages and stack traces, should be included in the response for this request. Returns . Gets or sets a value indicating whether the request originates from a local address. Returns . .Gets or sets the principal Returns . Gets or sets the route data. Returns . Gets or sets the factory used to generate URLs to other APIs. Returns . Gets or sets the virtual path root. Returns . A contract for a conversion routine that can take the result of an action returned from <see cref="M:System.Web.Http.Controllers.HttpActionDescriptor.ExecuteAsync(System.Web.Http.Controllers.HttpControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})" /> and convert it to an instance of . Converts the specified object to another object. The converted object. The controller context. The action result. Defines the method for retrieval of action binding associated with parameter value. Gets the . A object. The action descriptor. If a controller is decorated with an attribute with this interface, then it gets invoked to initialize the controller settings. Callback invoked to set per-controller overrides for this controllerDescriptor. The controller settings to initialize. The controller descriptor. Note that the can be associated with the derived controller type given that is inherited. Contains method that is used to invoke HTTP operation. Executes asynchronously the HTTP operation. The newly started task. The execution context. The cancellation token assigned for the HTTP operation. Contains the logic for selecting an action method. Returns a map, keyed by action string, of all that the selector can select. This is primarily called by to discover all the possible actions in the controller. A map of that the selector can select, or null if the selector does not have a well-defined mapping of . The controller descriptor. Selects the action for the controller. The action for the controller. The context of the controller. Represents an HTTP controller. Executes the controller for synchronization. The controller. The current context for a test controller. The notification that cancels the operation. Defines extension methods for . Binds parameter that results as an error. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The error message that describes the reason for fail bind. Bind the parameter as if it had the given attribute on the declaration. The HTTP parameter binding object. The parameter to provide binding for. The attribute that describes the binding. Binds parameter by parsing the HTTP body content. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. Binds parameter by parsing the HTTP body content. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The list of formatters which provides selection of an appropriate formatter for serializing the parameter into object. Binds parameter by parsing the HTTP body content. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The list of formatters which provides selection of an appropriate formatter for serializing the parameter into object. The body model validator used to validate the parameter. Binds parameter by parsing the HTTP body content. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The list of formatters which provides selection of an appropriate formatter for serializing the parameter into object. Binds parameter by parsing the query string. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. Binds parameter by parsing the query string. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The value provider factories which provide query string parameter data. Binds parameter by parsing the query string. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The model binder used to assemble the parameter into an object. Binds parameter by parsing the query string. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The model binder used to assemble the parameter into an object. The value provider factories which provide query string parameter data. Binds parameter by parsing the query string. The HTTP parameter binding object. The parameter descriptor that describes the parameter to bind. The value provider factories which provide query string parameter data. Represents a reflected synchronous or asynchronous action method. Initializes a new instance of the class. Initializes a new instance of the class with the specified descriptor and method details.. The controller descriptor. The action-method information. Gets the name of the action. The name of the action. Executes the described action and returns a that once completed will contain the return value of the action. A [T:System.Threading.Tasks.Task`1"] that once completed will contain the return value of the action. The context. The arguments. A cancellation token to cancel the action. Returns an array of custom attributes defined for this member, identified by type. An array of custom attributes or an empty array if no custom attributes exist. true to search this action's inheritance chain to find the attributes; otherwise, false. The type of the custom attributes. Retrieves information about action filters. The filter information. Retrieves the parameters of the action method. The parameters of the action method. Gets or sets the action-method information. The action-method information. Gets the return type of this method. The return type of this method. Gets or sets the supported http methods. The supported http methods. Represents the reflected HTTP parameter descriptor. Initializes a new instance of the class. Initializes a new instance of the class. The action descriptor. The parameter information. Gets the default value for the parameter. The default value for the parameter. Retrieves a collection of the custom attributes from the parameter. A collection of the custom attributes from the parameter. The type of the custom attributes. Gets a value that indicates whether the parameter is optional. true if the parameter is optional; otherwise false. Gets or sets the parameter information. The parameter information. Gets the name of the parameter. The name of the parameter. Gets the type of the parameter. The type of the parameter. Represents a converter for actions with a return type of . Initializes a new instance of the class. Converts a object to another object. The converted object. The controller context. The action result. An abstract class that provides a container for services used by ASP.NET Web API. Initializes a new instance of the class. Adds a service to the end of services list for the given service type. The service type. The service instance. Adds the services of the specified collection to the end of the services list for the given service type. The service type. The services to add. Removes all the service instances of the given service type. The service type to clear from the services list. Removes all instances of a multi-instance service type. The service type to remove. Removes a single-instance service type. The service type to remove. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Searches for a service that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence. The zero-based index of the first occurrence, if found; otherwise, -1. The service type. The delegate that defines the conditions of the element to search for. Gets a service instance of a specified type. The service type. Gets a mutable list of service instances of a specified type. A mutable list of service instances. The service type. Gets a collection of service instanes of a specified type. A collection of service instances. The service type. Inserts a service into the collection at the specified index. The service type. The zero-based index at which the service should be inserted. If is passed, ensures the element is added to the end. The service to insert. Inserts the elements of the collection into the service list at the specified index. The service type. The zero-based index at which the new elements should be inserted. If is passed, ensures the elements are added to the end. The collection of services to insert. Determine whether the service type should be fetched with GetService or GetServices. true iff the service is singular. type of service to query Removes the first occurrence of the given service from the service list for the given service type. true if the item is successfully removed; otherwise, false. The service type. The service instance to remove. Removes all the elements that match the conditions defined by the specified predicate. The number of elements removed from the list. The service type. The delegate that defines the conditions of the elements to remove. Removes the service at the specified index. The service type. The zero-based index of the service to remove. Replaces all existing services for the given service type with the given service instance. This works for both singular and plural services. The service type. The service instance. Replaces all instances of a multi-instance service with a new instance. The type of service. The service instance that will replace the current services of this type. Replaces all existing services for the given service type with the given service instances. The service type. The service instances. Replaces a single-instance service of a specified type. The service type. The service instance. Removes the cached values for a single service type. The service type. A converter for creating responses from actions that return an arbitrary value. The declared return type of an action. Initializes a new instance of the class. Converts the result of an action with arbitrary return type to an instance of . The newly created object. The action controller context. The execution result. Represents a converter for creating a response from actions that do not return a value. Initializes a new instance of the class. Converts the created response from actions that do not return a value. The converted response. The context of the controller. The result of the action. Represents a dependency injection container. Starts a resolution scope. The dependency scope. Represents an interface for the range of the dependencies. Retrieves a service from the scope. The retrieved service. The service to be retrieved. Retrieves a collection of services from the scope. The retrieved collection of services. The collection of services to be retrieved. Describes an API defined by relative URI path and HTTP method. Initializes a new instance of the class. Gets or sets the action descriptor that will handle the API. The action descriptor. Gets or sets the documentation of the API. The documentation. Gets or sets the HTTP method. The HTTP method. Gets the ID. The ID is unique within . The ID. Gets the parameter descriptions. The parameter descriptions. Gets or sets the relative path. The relative path. Gets or sets the response description. The response description. Gets or sets the registered route for the API. The route. Gets the supported request body formatters. The supported request body formatters. Gets the supported response formatters. The supported response formatters. Explores the URI space of the service based on routes, controllers and actions available in the system. Initializes a new instance of the class. The configuration. Gets the API descriptions. The descriptions are initialized on the first access. Gets or sets the documentation provider. The provider will be responsible for documenting the API. The documentation provider. Gets a collection of HttpMethods supported by the action. Called when initializing the . A collection of HttpMethods supported by the action. The route. The action descriptor. Determines whether the action should be considered for generation. Called when initializing the . true if the action should be considered for generation, false otherwise. The action variable value from the route. The action descriptor. The route. Determines whether the controller should be considered for generation. Called when initializing the . true if the controller should be considered for generation, false otherwise. The controller variable value from the route. The controller descriptor. The route. This attribute can be used on the controllers and actions to influence the behavior of . Initializes a new instance of the class. Gets or sets a value indicating whether to exclude the controller or action from the instances generated by . true if the controller or action should be ignored; otherwise, false. Describes a parameter on the API defined by relative URI path and HTTP method. Initializes a new instance of the class. Gets or sets the documentation. The documentation. Gets or sets the name. The name. Gets or sets the parameter descriptor. The parameter descriptor. Gets or sets the source of the parameter. It may come from the request URI, request body or other places. The source. Describes where the parameter come from. The parameter come from Body. The parameter come from Uri. The location is unknown. Defines the interface for getting a collection of . Gets the API descriptions. Defines the provider responsible for documenting the service. Gets the documentation based on . The documentation for the controller. The action descriptor. Gets the documentation based on . The documentation for the controller. The parameter descriptor. Describes the API response. Initializes a new instance of the class. Gets or sets the declared response type. The declared response type. Gets or sets the response documentation. The response documentation. Gets or sets the actual response type. The actual response type. Use this to specify the entity type returned by an action when the declared return type is or . The will be read by when generating . Initializes a new instance of the class. The response type. Gets the response type. Provides an implementation of with no external dependencies. Initializes a new instance of the class. Returns a list of assemblies available for the application. A <see cref="T:System.Collections.ObjectModel.Collection`1" /> of assemblies. Represents a default implementation of an . A different implementation can be registered via the . We optimize for the case where we have an instance per instance but can support cases where there are many instances for one as well. In the latter case the lookup is slightly slower because it goes through the dictionary. Initializes a new instance of the class. Creates the specified by using the given . An instance of type . The request message. The controller descriptor. The type of the controller. Represents a default instance for choosing a given a . A different implementation can be registered via the . Initializes a new instance of the class. The configuration. Specifies the suffix string in the controller name. Returns a map, keyed by controller string, of all that the selector can select. A map of all that the selector can select, or null if the selector does not have a well-defined mapping of . Gets the name of the controller for the specified . The name of the controller for the specified . The HTTP request message. Selects a for the given . The instance for the given . The HTTP request message. Provides an implementation of with no external dependencies. Initializes a new instance of the class. Initializes a new instance using a predicate to filter controller types. The predicate. Returns a list of controllers available for the application. An <see cref="T:System.Collections.Generic.ICollection`1" /> of controllers. The assemblies resolver. Gets a value whether the resolver type is a controller type predicate. true if the resolver type is a controller type predicate; otherwise, false. Dispatches an incoming to an implementation for processing. Initializes a new instance of the class with the specified configuration. The http configuration. Gets the HTTP configuration. The HTTP configuration. Dispatches an incoming to an . A representing the ongoing operation. The request to dispatch The cancellation token. This class is the default endpoint message handler which examines the of the matched route, and chooses which message handler to call. If is null, then it delegates to . Initializes a new instance of the class, using the provided and as the default handler. The server configuration. Initializes a new instance of the class, using the provided and . The server configuration. The default handler to use when the has no . Sends an HTTP request as an asynchronous operation. The task object representing the asynchronous operation. The HTTP request message to send. The cancellation token to cancel operation. Provides an abstraction for managing the assemblies of an application. A different implementation can be registered via the . Returns a list of assemblies available for the application. An <see cref="T:System.Collections.Generic.ICollection`1" /> of assemblies. Defines the methods that are required for an . Creates an object. An object. The message request. The HTTP controller descriptor. The type of the controller. Defines the methods that are required for an factory. Returns a map, keyed by controller string, of all that the selector can select. This is primarily called by to discover all the possible controllers in the system. A map of all that the selector can select, or null if the selector does not have a well-defined mapping of . Selects a for the given . An instance. The request message. Provides an abstraction for managing the controller types of an application. A different implementation can be registered via the DependencyResolver. Returns a list of controllers available for the application. An <see cref="T:System.Collections.Generic.ICollection`1" /> of controllers. The resolver for failed assemblies. Provides the catch blocks used within this assembly. Gets the catch block in System.Web.Http.ExceptionHandling.ExceptionCatchBlocks.HttpBatchHandler.SendAsync. The catch block in System.Web.Http.ExceptionHandling.ExceptionCatchBlocks.HttpBatchHandler.SendAsync. Gets the catch block in System.Web.Http.ExceptionHandling.ExceptionCatchBlocks.HttpControllerDispatcher.SendAsync. The catch block in System.Web.Http.ExceptionHandling.ExceptionCatchBlocks.HttpControllerDispatcher.SendAsync. Gets the catch block in System.Web.Http.ExceptionHandling.ExceptionCatchBlocks.HttpServer.SendAsync. The catch block in System.Web.Http.ExceptionHandling.ExceptionCatchBlocks.HttpServer.SendAsync. Gets the catch block in System.Web.Http.ApiController.ExecuteAsync when using . The catch block in System.Web.Http.ApiController.ExecuteAsync when using . Represents an exception and the contextual data associated with it when it was caught. Initializes a new instance of the class. The caught exception. The catch block where the exception was caught. Initializes a new instance of the class. The caught exception. The catch block where the exception was caught. The request being processed when the exception was caught. Initializes a new instance of the class. The caught exception. The catch block where the exception was caught. The request being processed when the exception was caught. The repsonse being returned when the exception was caught. Initializes a new instance of the class. The caught exception. The catch block where the exception was caught. The action context in which the exception occurred. Gets the action context in which the exception occurred, if available. The action context in which the exception occurred, if available. Gets the catch block in which the exception was caught. The catch block in which the exception was caught. Gets the controller context in which the exception occurred, if available. The controller context in which the exception occurred, if available. Gets the caught exception. The caught exception. Gets the request being processed when the exception was caught. The request being processed when the exception was caught. Gets the request context in which the exception occurred. The request context in which the exception occurred. Gets the response being sent when the exception was caught. The response being sent when the exception was caught. Represents the catch block location for an exception context. Initializes a new instance of the class. The label for the catch block where the exception was caught. A value indicating whether the catch block where the exception was caught is the last one before the host. A value indicating whether exceptions in the catch block can be handled after they are logged. Gets a value indicating whether exceptions in the catch block can be handled after they are logged. A value indicating whether exceptions in the catch block can be handled after they are logged. Gets a value indicating whether the catch block where the exception was caught is the last one before the host. A value indicating whether the catch block where the exception was caught is the last one before the host. Gets a label for the catch block in which the exception was caught. A label for the catch block in which the exception was caught. Returns . Represents an unhandled exception handler. Initializes a new instance of the class. When overridden in a derived class, handles the exception synchronously. The exception handler context. When overridden in a derived class, handles the exception asynchronously. A task representing the asynchronous exception handling operation. The exception handler context. The token to monitor for cancellation requests. Determines whether the exception should be handled. true if the exception should be handled; otherwise, false. The exception handler context. Returns . Represents the context within which unhandled exception handling occurs. Initializes a new instance of the class. The exception context. Gets the catch block in which the exception was caught. The catch block in which the exception was caught. Gets the caught exception. The caught exception. Gets the exception context providing the exception and related data. The exception context providing the exception and related data. Gets the request being processed when the exception was caught. The request being processed when the exception was caught. Gets the request context in which the exception occurred. The request context in which the exception occurred. Gets or sets the result providing the response message when the exception is handled. The result providing the response message when the exception is handled. Provides extension methods for . Calls an exception handler and determines the response handling it, if any. A task that, when completed, contains the response message to return when the exception is handled, or null when the exception remains unhandled. The unhandled exception handler. The exception context. The token to monitor for cancellation requests. Represents an unhandled exception logger. Initializes a new instance of the class. When overridden in a derived class, logs the exception synchronously. The exception logger context. When overridden in a derived class, logs the exception asynchronously. A task representing the asynchronous exception logging operation. The exception logger context. The token to monitor for cancellation requests. Determines whether the exception should be logged. true if the exception should be logged; otherwise, false. The exception logger context. Returns . Represents the context within which unhandled exception logging occurs. Initializes a new instance of the class. The exception context. Gets or sets a value indicating whether the exception can subsequently be handled by an to produce a new response message. A value indicating whether the exception can subsequently be handled by an to produce a new response message. Gets the catch block in which the exception was caught. The catch block in which the exception was caught. Gets the caught exception. The caught exception. Gets the exception context providing the exception and related data. The exception context providing the exception and related data. Gets the request being processed when the exception was caught. The request being processed when the exception was caught. Gets the request context in which the exception occurred. The request context in which the exception occurred. Provides extension methods for . Calls an exception logger. A task representing the asynchronous exception logging operation. The unhandled exception logger. The exception context. The token to monitor for cancellation requests. Creates exception services to call logging and handling from catch blocks. Gets an exception handler that calls the registered handler service, if any, and ensures exceptions do not accidentally propagate to the host. An exception handler that calls any registered handler and ensures exceptions do not accidentally propagate to the host. The services container. Gets an exception handler that calls the registered handler service, if any, and ensures exceptions do not accidentally propagate to the host. An exception handler that calls any registered handler and ensures exceptions do not accidentally propagate to the host. The configuration. Gets an exception logger that calls all registered logger services. A composite logger. The services container. Gets an exception logger that calls all registered logger services. A composite logger. The configuration. Defines an unhandled exception handler. Process an unhandled exception, either allowing it to propagate or handling it by providing a response message to return instead. A task representing the asynchronous exception handling operation. The exception handler context. The token to monitor for cancellation requests. Defines an unhandled exception logger. Logs an unhandled exception. A task representing the asynchronous exception logging operation. The exception logger context. The token to monitor for cancellation requests. Provides information about an action method, such as its name, controller, parameters, attributes, and filters. Initializes a new instance of the class. Returns the filters that are associated with this action method. The filters that are associated with this action method. The configuration. The action descriptor. Represents the base class for all action-filter attributes. Initializes a new instance of the class. Occurs after the action method is invoked. The action executed context. Occurs before the action method is invoked. The action context. Executes the filter action asynchronously. The newly created task for this operation. The action context. The cancellation token assigned for this task. The delegate function to continue after the action method is invoked. Provides details for authorization filter. Initializes a new instance of the class. Calls when a process requests authorization. The action context, which encapsulates information for using . Executes the authorization filter during synchronization. The authorization filter during synchronization. The action context, which encapsulates information for using . The cancellation token that cancels the operation. A continuation of the operation. Represents the configuration filter provider. Initializes a new instance of the class. Returns the filters that are associated with this configuration method. The filters that are associated with this configuration method. The configuration. The action descriptor. Represents the attributes for the exception filter. Initializes a new instance of the class. Raises the exception event. The context for the action. Asynchronously executes the exception filter. The result of the execution. The context for the action. The cancellation context. Represents the base class for action-filter attributes. Initializes a new instance of the class. Gets a value that indicates whether multiple filters are allowed. true if multiple filters are allowed; otherwise, false. Provides information about the available action filters. Initializes a new instance of the class. The instance of this class. The scope of this class. Gets or sets an instance of the . A . Gets or sets the scope . The scope of the FilterInfo. Defines values that specify the order in which filters run within the same filter type and filter order. Specifies an order after Controller. Specifies an order before Action and after Global. Specifies an action before Controller. Represents the action of the HTTP executed context. Initializes a new instance of the class. Initializes a new instance of the class. The action context. The exception. Gets or sets the HTTP action context. The HTTP action context. Gets or sets the exception that was raised during the execution. The exception that was raised during the execution. Gets the object for the context. The object for the context. Gets or sets the for the context. The for the context. Represents an authentication challenge context containing information for executing an authentication challenge. Initializes a new instance of the class. The action context. The current action result. Gets the action context. Gets the request message. Gets or sets the action result to execute. Represents an authentication context containing information for performing authentication. Initializes a new instance of the class. The action context. The current principal. Gets the action context. The action context. Gets or sets an action result that will produce an error response (if authentication failed; otherwise, null). An action result that will produce an error response. Gets or sets the authenticated principal. The authenticated principal. Gets the request message. The request message. Represents a collection of HTTP filters. Initializes a new instance of the class. Adds an item at the end of the collection. The item to add to the collection. Removes all item in the collection. Determines whether the collection contains the specified item. true if the collection contains the specified item; otherwise, false. The item to check. Gets the number of elements in the collection. The number of elements in the collection. Gets an enumerator that iterates through the collection. An enumerator object that can be used to iterate through the collection. Removes the specified item from the collection. The item to remove in the collection. Gets an enumerator that iterates through the collection. An enumerator object that can be used to iterate through the collection. Defines the methods that are used in an action filter. Executes the filter action asynchronously. The newly created task for this operation. The action context. The cancellation token assigned for this task. The delegate function to continue after the action method is invoked. Defines a filter that performs authentication. Authenticates the request. A Task that will perform authentication. The authentication context. The token to monitor for cancellation requests. Defines the methods that are required for an authorization filter. Executes the authorization filter to synchronize. The authorization filter to synchronize. The action context. The cancellation token associated with the filter. The continuation. Defines the methods that are required for an exception filter. Executes an asynchronous exception filter. An asynchronous exception filter. The action executed context. The cancellation token. Defines the methods that are used in a filter. Gets or sets a value indicating whether more than one instance of the indicated attribute can be specified for a single program element. true if more than one instance is allowed to be specified; otherwise, false. The default is false. Provides filter information. Returns an enumeration of filters. An enumeration of filters. The HTTP configuration. The action descriptor. Provides common keys for properties stored in the Provides a key for the client certificate for this request. Provides a key for the associated with this request. Provides a key for the collection of resources that should be disposed when a request is disposed. Provides a key for the associated with this request. Provides a key for the associated with this request. Provides a key for the associated with this request. Provides a key that indicates whether error details are to be included in the response for this HTTP request. Provides a key that indicates whether the request is a batch request. Provides a key that indicates whether the request originates from a local address. Provides a key that indicates whether the request failed to match a route. Provides a key for the for this request. Provides a key for the stored in . This is the correlation ID for that request. Provides a key for the parsed query string stored in . Provides a key for a delegate which can retrieve the client certificate for this request. Provides a key for the current stored in Properties(). If Current() is null then no context is stored. Interface for controlling the use of buffering requests and responses in the host. If a host provides support for buffering requests and/or responses then it can use this interface to determine the policy for when buffering is to be used. Determines whether the host should buffer the entity body. true if buffering should be used; otherwise a streamed request should be used. The host context. Determines whether the host should buffer the entity body. true if buffering should be used; otherwise a streamed response should be used. The HTTP response message. Represents a message handler that suppresses host authentication results. Initializes a new instance of the class. Asynchronously sends a request message. That task that completes the asynchronous operation. The request message to send. The cancellation token. Represents the metadata class of the ModelMetadata. Initializes a new instance of the class. The provider. The type of the container. The model accessor. The type of the model. The name of the property. Gets a dictionary that contains additional metadata about the model. A dictionary that contains additional metadata about the model. Gets or sets the type of the container for the model. The type of the container for the model. Gets or sets a value that indicates whether empty strings that are posted back in forms should be converted to null. true if empty strings that are posted back in forms should be converted to null; otherwise, false. The default value is true. Gets or sets the description of the model. The description of the model. The default value is null. Gets the display name for the model. The display name for the model. Gets a list of validators for the model. A list of validators for the model. The validator providers for the model. Gets or sets a value that indicates whether the model is a complex type. A value that indicates whether the model is considered a complex. Gets a value that indicates whether the type is nullable. true if the type is nullable; otherwise, false. Gets or sets a value that indicates whether the model is read-only. true if the model is read-only; otherwise, false. Gets the value of the model. The model value can be null. Gets the type of the model. The type of the model. Gets a collection of model metadata objects that describe the properties of the model. A collection of model metadata objects that describe the properties of the model. Gets the property name. The property name. Gets or sets the provider. The provider. Provides an abstract base class for a custom metadata provider. Initializes a new instance of the class. Gets a ModelMetadata object for each property of a model. A ModelMetadata object for each property of a model. The container. The type of the container. Gets a metadata for the specified property. The metadata model for the specified property. The model accessor. The type of the container. The property to get the metadata model for. Gets the metadata for the specified model accessor and model type. The metadata. The model accessor. The type of the mode. Provides an abstract class to implement a metadata provider. The type of the model metadata. Initializes a new instance of the class. When overridden in a derived class, creates the model metadata for the property using the specified prototype. The model metadata for the property. The prototype from which to create the model metadata. The model accessor. When overridden in a derived class, creates the model metadata for the property. The model metadata for the property. The set of attributes. The type of the container. The type of the model. The name of the property. Retrieves a list of properties for the model. A list of properties for the model. The model container. The type of the container. Retrieves the metadata for the specified property using the container type and property name. The metadata for the specified property. The model accessor. The type of the container. The name of the property. Returns the metadata for the specified property using the type of the model. The metadata for the specified property. The model accessor. The type of the container. Provides prototype cache data for . Initializes a new instance of the class. The attributes that provides data for the initialization. Gets or sets the metadata display attribute. The metadata display attribute. Gets or sets the metadata display format attribute. The metadata display format attribute. Gets or sets the metadata editable attribute. The metadata editable attribute. Gets or sets the metadata read-only attribute. The metadata read-only attribute. Provides a container for common metadata, for the class, for a data model. Initializes a new instance of the class. The prototype used to initialize the model metadata. The model accessor. Initializes a new instance of the class. The metadata provider. The type of the container. The type of the model. The name of the property. The attributes that provides data for the initialization. Retrieves a value that indicates whether empty strings that are posted back in forms should be converted to null. true if empty strings that are posted back in forms should be converted to null; otherwise, false. Retrieves the description of the model. The description of the model. Retrieves a value that indicates whether the model is read-only. true if the model is read-only; otherwise, false. Provides prototype cache data for the . The type of prototype cache. Initializes a new instance of the class. The prototype. The model accessor. Initializes a new instance of the class. The provider. The type of container. The type of the model. The name of the property. The prototype cache. Indicates whether empty strings that are posted back in forms should be computed and converted to null. true if empty strings that are posted back in forms should be computed and converted to null; otherwise, false. Indicates the computation value. The computation value. Gets a value that indicates whether the model is a complex type. A value that indicates whether the model is considered a complex type by the Web API framework. Gets a value that indicates whether the model to be computed is read-only. true if the model to be computed is read-only; otherwise, false. Gets or sets a value that indicates whether empty strings that are posted back in forms should be converted to null. true if empty strings that are posted back in forms should be converted to null; otherwise, false. The default value is true. Gets or sets the description of the model. The description of the model. Gets a value that indicates whether the model is a complex type. A value that indicates whether the model is considered a complex type by the Web API framework. Gets or sets a value that indicates whether the model is read-only. true if the model is read-only; otherwise, false. Gets or sets a value that indicates whether the prototype cache is updating. true if the prototype cache is updating; otherwise, false. Implements the default model metadata provider. Initializes a new instance of the class. Creates the metadata from prototype for the specified property. The metadata for the property. The prototype. The model accessor. Creates the metadata for the specified property. The metadata for the property. The attributes. The type of the container. The type of the model. The name of the property. Represents an empty model metadata provider. Initializes a new instance of the class. Creates metadata from prototype. The metadata. The model metadata prototype. The model accessor. Creates a prototype of the metadata provider of the . A prototype of the metadata provider. The attributes. The type of container. The type of model. The name of the property. Represents the binding directly to the cancellation token. Initializes a new instance of the class. The binding descriptor. Executes the binding during synchronization. The binding during synchronization. The metadata provider. The action context. The notification after the cancellation of the operations. Represents an attribute that invokes a custom model binder. Initializes a new instance of the class. Retrieves the associated model binder. A reference to an object that implements the interface. Represents the default action value of the binder. Initializes a new instance of the class. Default implementation of the interface. This interface is the primary entry point for binding action parameters. The associated with the . The action descriptor. Gets the associated with the . The associated with the . The parameter descriptor. Defines a binding error. Initializes a new instance of the class. The error descriptor. The message. Gets the error message. The error message. Executes the binding method during synchronization. The metadata provider. The action context. The cancellation Token value. Represents parameter binding that will read from the body and invoke the formatters. Initializes a new instance of the class. The descriptor. The formatter. The body model validator. Gets or sets an interface for the body model validator. An interface for the body model validator. Gets the error message. The error message. Asynchronously execute the binding of . The result of the action. The metadata provider. The context associated with the action. The cancellation token. Gets or sets an enumerable object that represents the formatter for the parameter binding. An enumerable object that represents the formatter for the parameter binding. Asynchronously reads the content of . The result of the action. The request. The type. The formatter. The format logger. Gets whether the will read body. True if the will read body; otherwise, false. Represents the extensions for the collection of form data. Reads the collection extensions with specified type. The read collection extensions. The form data. The generic type. Reads the collection extensions with specified type. The collection extensions. The form data. The name of the model. The required member selector. The formatter logger. The generic type. Reads the collection extensions with specified type. The collection extensions with specified type. The form data. The type of the object. Reads the collection extensions with specified type and model name. The collection extensions. The form data. The type of the object. The name of the model. The required member selector. The formatter logger. Deserialize the form data to the given type, using model binding. best attempt to bind the object. The best attempt may be null. collection with parsed form url data target type to read as null or empty to read the entire form as a single object. This is common for body data. Or the name of a model to do a partial binding against the form data. This is common for extracting individual fields. The used to determine required members. The to log events to. The configuration to pick binder from. Can be null if the config was not created already. In that case a new config is created. Enumerates the behavior of the HTTP binding. Never use HTTP binding. The optional binding behavior HTTP binding is required. Provides a base class for model-binding behavior attributes. Initializes a new instance of the class. The behavior. Gets or sets the behavior category. The behavior category. Gets the unique identifier for this attribute. The id for this attribute. Parameter binds to the request. Initializes a new instance of the class. The parameter descriptor. Asynchronously executes parameter binding. The binded parameter. The metadata provider. The action context. The cancellation token. Defines the methods that are required for a model binder. Binds the model to a value by using the specified controller context and binding context. true if model binding is successful; otherwise, false. The action context. The binding context. Represents a value provider for parameter binding. Gets the instances used by this parameter binding. The instances used by this parameter binding. Represents the class for handling HTML form URL-ended data, also known as application/x-www-form-urlencoded. Initializes a new instance of the class. Determines whether this can read objects of the specified . true if objects of this type can be read; otherwise false. The type of object that will be read. Reads an object of the specified from the specified stream. This method is called during deserialization. A whose result will be the object instance that has been read. The type of object to read. The from which to read. The content being read. The to log events to. Specify this parameter uses a model binder. This can optionally specify the specific model binder and value providers that drive that model binder. Derived attributes may provide convenience settings for the model binder or value provider. Initializes a new instance of the class. Initializes a new instance of the class. The type of model binder. Gets or sets the type of model binder. The type of model binder. Gets the binding for a parameter. The that contains the binding. The parameter to bind. Get the IModelBinder for this type. a non-null model binder. The configuration. model type that the binder is expected to bind. Gets the model binder provider. The instance. The configuration object. Gets the value providers that will be fed to the model binder. A collection of instances. The configuration object. Gets or sets the name to consider as the parameter name during model binding. The parameter name to consider. Gets or sets a value that specifies whether the prefix check should be suppressed. true if the prefix check should be suppressed; otherwise, false. Provides a container for model-binder configuration. Gets or sets the name of the resource file (class key) that contains localized string values. The name of the resource file (class key). Gets or sets the current provider for type-conversion error message. The current provider for type-conversion error message. Gets or sets the current provider for value-required error messages. The error message provider. Provides a container for model-binder error message provider. Describes a parameter that gets bound via ModelBinding. Initializes a new instance of the class. The parameter descriptor. The model binder. The collection of value provider factory. Gets the model binder. The model binder. Asynchronously executes the parameter binding via the model binder. The task that is signaled when the binding is complete. The metadata provider to use for validation. The action context for the binding. The cancellation token assigned for this task for cancelling the binding operation. Gets the collection of value provider factory. The collection of value provider factory. Provides an abstract base class for model binder providers. Initializes a new instance of the class. Finds a binder for the given type. A binder, which can attempt to bind this type. Or null if the binder knows statically that it will never be able to bind the type. A configuration object. The type of the model to bind against. Provides the context in which a model binder functions. Initializes a new instance of the class. Initializes a new instance of the class. The binding context. Gets or sets a value that indicates whether the binder should use an empty prefix. true if the binder should use an empty prefix; otherwise, false. Gets or sets the model. The model. Gets or sets the model metadata. The model metadata. Gets or sets the name of the model. The name of the model. Gets or sets the state of the model. The state of the model. Gets or sets the type of the model. The type of the model. Gets the property metadata. The property metadata. Gets or sets the validation node. The validation node. Gets or sets the value provider. The value provider. Represents an error that occurs during model binding. Initializes a new instance of the class by using the specified exception. The exception. Initializes a new instance of the class by using the specified exception and error message. The exception. The error message Initializes a new instance of the class by using the specified error message. The error message Gets or sets the error message. The error message. Gets or sets the exception object. The exception object. Represents a collection of instances. Initializes a new instance of the class. Adds the specified Exception object to the model-error collection. The exception. Adds the specified error message to the model-error collection. The error message. Encapsulates the state of model binding to a property of an action-method argument, or to the argument itself. Initializes a new instance of the class. Gets a object that contains any errors that occurred during model binding. The model state errors. Gets a object that encapsulates the value that was being bound during model binding. The model state value. Represents the state of an attempt to bind a posted form to an action method, which includes validation information. Initializes a new instance of the class. Initializes a new instance of the class by using values that are copied from the specified model-state dictionary. The dictionary. Adds the specified item to the model-state dictionary. The object to add to the model-state dictionary. Adds an element that has the specified key and value to the model-state dictionary. The key of the element to add. The value of the element to add. Adds the specified model error to the errors collection for the model-state dictionary that is associated with the specified key. The key. The exception. Adds the specified error message to the errors collection for the model-state dictionary that is associated with the specified key. The key. The error message. Removes all items from the model-state dictionary. Determines whether the model-state dictionary contains a specific value. true if item is found in the model-state dictionary; otherwise, false. The object to locate in the model-state dictionary. Determines whether the model-state dictionary contains the specified key. true if the model-state dictionary contains the specified key; otherwise, false. The key to locate in the model-state dictionary. Copies the elements of the model-state dictionary to an array, starting at a specified index. The array. The array must have zero-based indexing. The zero-based index in array at which copying starts. Gets the number of key/value pairs in the collection. The number of key/value pairs in the collection. Returns an enumerator that can be used to iterate through the collection. An enumerator that can be used to iterate through the collection. Gets a value that indicates whether the collection is read-only. true if the collection is read-only; otherwise, false. Gets a value that indicates whether this instance of the model-state dictionary is valid. true if this instance is valid; otherwise, false. Determines whether there are any objects that are associated with or prefixed with the specified key. true if the model-state dictionary contains a value that is associated with the specified key; otherwise, false. The key. Gets or sets the value that is associated with the specified key. The model state item. The key. Gets a collection that contains the keys in the dictionary. A collection that contains the keys of the model-state dictionary. Copies the values from the specified object into this dictionary, overwriting existing values if keys are the same. The dictionary. Removes the first occurrence of the specified object from the model-state dictionary. true if item was successfully removed the model-state dictionary; otherwise, false. This method also returns false if item is not found in the model-state dictionary. The object to remove from the model-state dictionary. Removes the element that has the specified key from the model-state dictionary. true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the model-state dictionary. The key of the element to remove. Sets the value for the specified key by using the specified value provider dictionary. The key. The value. Returns an enumerator that iterates through a collection. An IEnumerator object that can be used to iterate through the collection. Attempts to gets the value that is associated with the specified key. true if the object contains an element that has the specified key; otherwise, false. The key of the value to get. The value associated with the specified key. Gets a collection that contains the values in the dictionary. A collection that contains the values of the model-state dictionary. Collection of functions that can produce a parameter binding for a given parameter. Initializes a new instance of the class. Adds function to the end of the collection. The function added is a wrapper around funcInner that checks that parameterType matches typeMatch. type to match against HttpParameterDescriptor.ParameterType inner function that is invoked if type match succeeds Insert a function at the specified index in the collection. /// The function added is a wrapper around funcInner that checks that parameterType matches typeMatch. index to insert at. type to match against HttpParameterDescriptor.ParameterType inner function that is invoked if type match succeeds Execute each binding function in order until one of them returns a non-null binding. the first non-null binding produced for the parameter. Of null if no binding is produced. parameter to bind. Maps a browser request to an array. The type of the array. Initializes a new instance of the class. Indicates whether the model is binded. true if the specified model is binded; otherwise, false. The action context. The binding context. Converts the collection to an array. true in all cases. The action context. The binding context. The new collection. Provides a model binder for arrays. Initializes a new instance of the class. Returns a model binder for arrays. A model binder object or null if the attempt to get a model binder is unsuccessful. The configuration. The type of model. Maps a browser request to a collection. The type of the collection. Initializes a new instance of the class. Binds the model by using the specified execution context and binding context. true if model binding is successful; otherwise, false. The action context. The binding context. Provides a way for derived classes to manipulate the collection before returning it from the binder. true in all cases. The action context. The binding context. The new collection. Provides a model binder for a collection. Initializes a new instance of the class. Retrieves a model binder for a collection. The model binder. The configuration of the model. The type of the model. Represents a data transfer object (DTO) for a complex model. Initializes a new instance of the class. The model metadata. The collection of property metadata. Gets or sets the model metadata of the . The model metadata of the . Gets or sets the collection of property metadata of the . The collection of property metadata of the . Gets or sets the results of the . The results of the . Represents a model binder for object. Initializes a new instance of the class. Determines whether the specified model is binded. true if the specified model is binded; otherwise, false. The action context. The binding context. Represents a complex model that invokes a model binder provider. Initializes a new instance of the class. Retrieves the associated model binder. The model binder. The configuration. The type of the model to retrieve. Represents the result for object. Initializes a new instance of the class. The object model. The validation node. Gets or sets the model for this object. The model for this object. Gets or sets the for this object. The for this object. Represents an that delegates to one of a collection of instances. Initializes a new instance of the class. An enumeration of binders. Initializes a new instance of the class. An array of binders. Indicates whether the specified model is binded. true if the model is binded; otherwise, false. The action context. The binding context. Represents the class for composite model binder providers. Initializes a new instance of the class. Initializes a new instance of the class. A collection of Gets the binder for the model. The binder for the model. The binder configuration. The type of the model. Gets the providers for the composite model binder. The collection of providers. Maps a browser request to a dictionary data object. The type of the key. The type of the value. Initializes a new instance of the class. Converts the collection to a dictionary. true in all cases. The action context. The binding context. The new collection. Provides a model binder for a dictionary. Initializes a new instance of the class. Retrieves the associated model binder. The associated model binder. The configuration to use. The type of model. Maps a browser request to a key/value pair data object. The type of the key. The type of the value. Initializes a new instance of the class. Binds the model by using the specified execution context and binding context. true if model binding is successful; otherwise, false. The action context. The binding context. Provides a model binder for a collection of key/value pairs. Initializes a new instance of the class. Retrieves the associated model binder. The associated model binder. The configuration. The type of model. Maps a browser request to a mutable data object. Initializes a new instance of the class. Binds the model by using the specified action context and binding context. true if binding is successful; otherwise, false. The action context. The binding context. Retrieves a value that indicates whether a property can be updated. true if the property can be updated; otherwise, false. The metadata for the property to be evaluated. Creates an instance of the model. The newly created model object. The action context. The binding context. Creates a model instance if an instance does not yet exist in the binding context. The action context. The binding context. Retrieves metadata for properties of the model. The metadata for properties of the model. The action context. The binding context. Sets the value of a specified property. The action context. The binding context. The metadata for the property to set. The validation information about the property. The validator for the model. Provides a model binder for mutable objects. Initializes a new instance of the class. Retrieves the model binder for the specified type. The model binder. The configuration. The type of the model to retrieve. Provides a simple model binder for this model binding class. Initializes a new instance of the class. The model type. The model binder factory. Initializes a new instance of the class by using the specified model type and the model binder. The model type. The model binder. Returns a model binder by using the specified execution context and binding context. The model binder, or null if the attempt to get a model binder is unsuccessful. The configuration. The model type. Gets the type of the model. The type of the model. Gets or sets a value that specifies whether the prefix check should be suppressed. true if the prefix check should be suppressed; otherwise, false. Maps a browser request to a data object. This type is used when model binding requires conversions using a .NET Framework type converter. Initializes a new instance of the class. Binds the model by using the specified controller context and binding context. true if model binding is successful; otherwise, false. The action context. The binding context. Provides a model binder for a model that requires type conversion. Initializes a new instance of the class. Retrieve a model binder for a model that requires type conversion. The model binder, or Nothing if the type cannot be converted or there is no value to convert. The configuration of the binder. The type of the model. Maps a browser request to a data object. This class is used when model binding does not require type conversion. Initializes a new instance of the class. Binds the model by using the specified execution context and binding context. true if model binding is successful; otherwise, false. The action context. The binding context. Provides a model binder for a model that does not require type conversion. Initializes a new instance of the class. Retrieves the associated model binder. The associated model binder. The configuration. The type of model. Represents an action result that returns response and performs content negotiation on an see with . Initializes a new instance of the class. The user-visible error message. The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Initializes a new instance of the class. The user-visible error message. The controller from which to obtain the dependencies needed for execution. Gets the content negotiator to handle content negotiation. Returns . Returns . Gets the formatters to use to negotiate and format the content. Returns . Gets the user-visible error message. Returns . Gets the request message which led to this result. Returns . Represents an action result that returns an empty response. Initializes a new instance of the class. The request message which led to this result. Initializes a new instance of the class. The controller from which to obtain the dependencies needed for execution. Asynchronously executes the request. The task that completes the execute operation. The cancellation token. Gets the request message which led to this result. The request message which led to this result. Represents an action result that returns an empty HttpStatusCode.Conflict response. Initializes a new instance of the class. The request message which led to this result. Initializes a new instance of the class. The controller from which to obtain the dependencies needed for execution. Executes asynchronously the operation of the conflict result. Asynchronously executes the specified task. The cancellation token. Gets the request message which led to this result. The HTTP request message which led to this result. Represents an action result that performs route generation and content negotiation and returns a response when content negotiation succeeds. The type of content in the entity body. Initializes a new instance of the class with the values provided. The name of the route to use for generating the URL. The route data to use for generating the URL. The content value to negotiate and format in the entity body. The controller from which to obtain the dependencies needed for execution. Initializes a new instance of the class with the values provided. The name of the route to use for generating the URL. The route data to use for generating the URL. The content value to negotiate and format in the entity body. The factory to use to generate the route URL. The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Gets the content value to negotiate and format in the entity body. Gets the content negotiator to handle content negotiation. Gets the formatters to use to negotiate and format the content. Gets the request message which led to this result. Gets the name of the route to use for generating the URL. Gets the route data to use for generating the URL. Gets the factory to use to generate the route URL. Represents an action result that performs content negotiation and returns a response when it succeeds. The type of content in the entity body. Initializes a new instance of the class with the values provided. The content value to negotiate and format in the entity body. The location at which the content has been created. The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Initializes a new instance of the class with the values provided. The location at which the content has been created. The content value to negotiate and format in the entity body. The controller from which to obtain the dependencies needed for execution. Gets the content value to negotiate and format in the entity body. The content value to negotiate and format in the entity body. Gets the content negotiator to handle content negotiation. The content negotiator to handle content negotiation. Executes asynchronously the operation of the created negotiated content result. Asynchronously executes a return value. The cancellation token. Gets the formatters to use to negotiate and format the content. The formatters to use to negotiate and format the content. Gets the location at which the content has been created. The location at which the content has been created. Gets the request message which led to this result. The HTTP request message which led to this result. Represents an action result that returns a response and performs content negotiation on an  based on an . Initializes a new instance of the class. The exception to include in the error. true if the error should include exception messages; otherwise, false . The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Initializes a new instance of the class. The exception to include in the error. The controller from which to obtain the dependencies needed for execution. Gets the content negotiator to handle content negotiation. Returns . Gets the exception to include in the error. Returns . Returns . Gets the formatters to use to negotiate and format the content. Returns . Gets a value indicating whether the error should include exception messages. Returns . Gets the request message which led to this result. Returns . Represents an action result that returns formatted content. The type of content in the entity body. Initializes a new instance of the class with the values provided. The HTTP status code for the response message. The content value to format in the entity body. The formatter to use to format the content. The value for the Content-Type header, or to have the formatter pick a default value. The request message which led to this result. Initializes a new instance of the class with the values provided. The HTTP status code for the response message. The content value to format in the entity body. The formatter to use to format the content. The value for the Content-Type header, or to have the formatter pick a default value. The controller from which to obtain the dependencies needed for execution. Gets the content value to format in the entity body. Gets the formatter to use to format the content. Gets the value for the Content-Type header, or to have the formatter pick a default value. Gets the request message which led to this result. Gets the HTTP status code for the response message. Represents an action result that returns an empty response. Initializes a new instance of the class. The request message which led to this result. Initializes a new instance of the class. The controller from which to obtain the dependencies needed for execution. Returns . Gets the request message which led to this result. Returns . Represents an action result that returns a response and performs content negotiation on an based on a . Initializes a new instance of the class. The model state to include in the error. true if the error should include exception messages; otherwise, false. The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Initializes a new instance of the class. The model state to include in the error. The controller from which to obtain the dependencies needed for execution. Gets the content negotiator to handle content negotiation. The content negotiator to handle content negotiation. Creates a response message asynchronously. A task that, when completed, contains the response message. The token to monitor for cancellation requests. Gets the formatters to use to negotiate and format the content. The formatters to use to negotiate and format the content. Gets a value indicating whether the error should include exception messages. true if the error should include exception messages; otherwise, false. Gets the model state to include in the error. The model state to include in the error. Gets the request message which led to this result. The request message which led to this result. Represents an action result that returns an response with JSON data. The type of content in the entity body. Initializes a new instance of the class with the values provided. The content value to serialize in the entity body. The serializer settings. The content encoding. The request message which led to this result. Initializes a new instance of the class with the values provided. The content value to serialize in the entity body. The serializer settings. The content encoding. The controller from which to obtain the dependencies needed for execution. Gets the content value to serialize in the entity body. The content value to serialize in the entity body. Gets the content encoding. The content encoding. Creates a response message asynchronously. A task that, when completed, contains the response message. The token to monitor for cancellation requests. Gets the request message which led to this result. The request message which led to this result. Gets the serializer settings. The serializer settings. Represents an action result that performs content negotiation. The type of content in the entity body. Initializes a new instance of the class with the values provided. The HTTP status code for the response message. The content value to negotiate and format in the entity body. The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Initializes a new instance of the class with the values provided. The HTTP status code for the response message. The content value to negotiate and format in the entity body. The controller from which to obtain the dependencies needed for execution. Gets the content value to negotiate and format in the entity body. The content value to negotiate and format in the entity body. Gets the content negotiator to handle content negotiation. The content negotiator to handle content negotiation. Executes asynchronously an HTTP negotiated content results. Asynchronously executes an HTTP negotiated content results. The cancellation token. Gets the formatters to use to negotiate and format the content. The formatters to use to negotiate and format the content. Gets the request message which led to this result. The HTTP request message which led to this result. Gets the HTTP status code for the response message. The HTTP status code for the response message. Represents an action result that returns an empty response. Initializes a new instance of the class. The request message which led to this result. Initializes a new instance of the class. The controller from which to obtain the dependencies needed for execution. Gets the request message which led to this result. Represents an action result that performs content negotiation and returns an HttpStatusCode.OK response when it succeeds. The type of content in the entity body. Initializes a new instance of the class with the values provided. The content value to negotiate and format in the entity body. The content negotiator to handle content negotiation. The request message which led to this result. The formatters to use to negotiate and format the content. Initializes a new instance of the class with the values provided. The content value to negotiate and format in the entity body. The controller from which to obtain the dependencies needed for execution. Gets the content value to negotiate and format in the entity body. Gets the content negotiator to handle content negotiation. Gets the formatters to use to negotiate and format the content. Gets the request message which led to this result. Represents an action result that returns an empty HttpStatusCode.OK response. Initializes a new instance of the class. The request message which led to this result. Initializes a new instance of the class. The controller from which to obtain the dependencies needed for execution. Executes asynchronously. Returns the task. The cancellation token. Gets a HTTP request message for the results. A HTTP request message for the results. Represents an action result for a <see cref="F:System.Net.HttpStatusCode.Redirect"/>. Initializes a new instance of the <see cref="T:System.Web.Http.Results.RedirectResult"/> class with the values provided. The location to which to redirect. The request message which led to this result. Initializes a new instance of the <see cref="T:System.Web.Http.Results.RedirectResult"/> class with the values provided. The location to which to redirect. The controller from which to obtain the dependencies needed for execution. Returns . Gets the location at which the content has been created. Returns . Gets the request message which led to this result. Returns . Represents an action result that performs route generation and returns a <see cref="F:System.Net.HttpStatusCode.Redirect"/> response. Initializes a new instance of the <see cref="T:System.Web.Http.Results.RedirectToRouteResult"/> class with the values provided. The name of the route to use for generating the URL. The route data to use for generating the URL. The controller from which to obtain the dependencies needed for execution. Initializes a new instance of the <see cref="T:System.Web.Http.Results.RedirectToRouteResult"/> class with the values provided. The name of the route to use for generating the URL. The route data to use for generating the URL. The factory to use to generate the route URL. The request message which led to this result. Returns . Gets the request message which led to this result. Returns . Gets the name of the route to use for generating the URL. Returns . Gets the route data to use for generating the URL. Returns . Gets the factory to use to generate the route URL. Returns . Represents an action result that returns a specified response message. Initializes a new instance of the class. The response message. Gets the response message. Represents an action result that returns a specified HTTP status code. Initializes a new instance of the class. The HTTP status code for the response message. The request message which led to this result. Initializes a new instance of the class. The HTTP status code for the response message. The controller from which to obtain the dependencies needed for execution. Creates a response message asynchronously. A task that, when completed, contains the response message. The token to monitor for cancellation requests. Gets the request message which led to this result. The request message which led to this result. Gets the HTTP status code for the response message. The HTTP status code for the response message. Represents an action result that returns an response. Initializes a new instance of the class. The WWW-Authenticate challenges. The request message which led to this result. Initializes a new instance of the class. The WWW-Authenticate challenges. The controller from which to obtain the dependencies needed for execution. Gets the WWW-Authenticate challenges. Returns . Returns . Gets the request message which led to this result. Returns . A default implementation of . Creates instances based on the provided factories and action. The route entries provide direct routing to the provided action. A set of route entries. The action descriptor. The direct route factories. The constraint resolver. Gets a set of route factories for the given action descriptor. A set of route factories. The action descriptor. Creates instances based on the provided factories, controller and actions. The route entries provided direct routing to the provided controller and can reach the set of provided actions. A set of route entries. The controller descriptor. The action descriptors. The direct route factories. The constraint resolver. Gets route factories for the given controller descriptor. A set of route factories. The controller descriptor. Gets direct routes for the given controller descriptor and action descriptors based on attributes. A set of route entries. The controller descriptor. The action descriptors for all actions. The constraint resolver. Gets the route prefix from the provided controller. The route prefix or null. The controller descriptor. The default implementation of . Resolves constraints by parsing a constraint key and constraint arguments, using a map to resolve the constraint type, and calling an appropriate constructor for the constraint type. Initializes a new instance of the class. Gets the mutable dictionary that maps constraint keys to a particular constraint type. The mutable dictionary that maps constraint keys to a particular constraint type. Resolves the inline constraint. The the inline constraint was resolved to. The inline constraint to resolve. Represents a context that supports creating a direct route. Initializes a new instance of the class. The route prefix, if any, defined by the controller. The action descriptors to which to create a route. The inline constraint resolver. A value indicating whether the route is configured at the action or controller level. Gets the action descriptors to which to create a route. The action descriptors to which to create a route. Creates a route builder that can build a route matching this context. A route builder that can build a route matching this context. The route template. Creates a route builder that can build a route matching this context. A route builder that can build a route matching this context. The route template. The inline constraint resolver to use, if any; otherwise, null. Gets the inline constraint resolver. The inline constraint resolver. Gets the route prefix, if any, defined by the controller. The route prefix, if any, defined by the controller. Gets a value indicating whether the route is configured at the action or controller level. true when the route is configured at the action level; otherwise false (if the route is configured at the controller level). Enables you to define which HTTP verbs are allowed when ASP.NET routing determines whether a URL matches a route. Initializes a new instance of the class by using the HTTP verbs that are allowed for the route. The HTTP verbs that are valid for the route. Gets or sets the collection of allowed HTTP verbs for the route. A collection of allowed HTTP verbs for the route. Determines whether the request was made with an HTTP verb that is one of the allowed verbs for the route. When ASP.NET routing is processing a request, true if the request was made by using an allowed HTTP verb; otherwise, false. When ASP.NET routing is constructing a URL, true if the supplied values contain an HTTP verb that matches one of the allowed HTTP verbs; otherwise, false. The default is true. The request that is being checked to determine whether it matches the URL. The object that is being checked to determine whether it matches the URL. The name of the parameter that is being checked. An object that contains the parameters for a route. An object that indicates whether the constraint check is being performed when an incoming request is processed or when a URL is generated. Determines whether the request was made with an HTTP verb that is one of the allowed verbs for the route. When ASP.NET routing is processing a request, true if the request was made by using an allowed HTTP verb; otherwise, false. When ASP.NET routing is constructing a URL, true if the supplied values contain an HTTP verb that matches one of the allowed HTTP verbs; otherwise, false. The default is true. The request that is being checked to determine whether it matches the URL. The object that is being checked to determine whether it matches the URL. The name of the parameter that is being checked. An object that contains the parameters for a route. An object that indicates whether the constraint check is being performed when an incoming request is processed or when a URL is generated. Represents a route class for self-host (i.e. hosted outside of ASP.NET). Initializes a new instance of the class. Initializes a new instance of the class. The route template. Initializes a new instance of the class. The route template. The default values for the route parameters. Initializes a new instance of the class. The route template. The default values for the route parameters. The constraints for the route parameters. Initializes a new instance of the class. The route template. The default values for the route parameters. The constraints for the route parameters. Any additional tokens for the route parameters. Initializes a new instance of the class. The route template. The default values for the route parameters. The constraints for the route parameters. Any additional tokens for the route parameters. The message handler that will be the recipient of the request. Gets the constraints for the route parameters. The constraints for the route parameters. Gets any additional data tokens not used directly to determine whether a route matches an incoming . Any additional data tokens not used directly to determine whether a route matches an incoming . Gets the default values for route parameters if not provided by the incoming . The default values for route parameters if not provided by the incoming . Determines whether this route is a match for the incoming request by looking up the for the route. The for a route if matches; otherwise null. The virtual path root. The HTTP request. Attempts to generate a URI that represents the values passed in based on current values from the and new values using the specified . A instance or null if URI cannot be generated. The HTTP request message. The route values. Gets or sets the http route handler. The http route handler. Specifies the HTTP route key. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The HTTP request. The constraints for the route parameters. The name of the parameter. The list of parameter values. One of the enumeration values of the enumeration. Gets the route template describing the URI pattern to match against. The route template describing the URI pattern to match against. Encapsulates information regarding the HTTP route. Initializes a new instance of the class. An object that defines the route. Initializes a new instance of the class. An object that defines the route. The value. Gets the object that represents the route. the object that represents the route. Gets a collection of URL parameter values and default values for the route. An object that contains values that are parsed from the URL and from default values. Removes all optional parameters that do not have a value from the route data. If a route is really a union of other routes, return the set of sub routes. Returns the set of sub routes contained within this route. A union route data. Removes all optional parameters that do not have a value from the route data. The route data, to be mutated in-place. Specifies an enumeration of route direction. The UriGeneration direction. The UriResolution direction. Represents a route class for self-host of specified key/value pairs. Initializes a new instance of the class. Initializes a new instance of the class. The dictionary. Initializes a new instance of the class. The key value. Presents the data regarding the HTTP virtual path. Initializes a new instance of the class. The route of the virtual path. The URL that was created from the route definition. Gets or sets the route of the virtual path.. The route of the virtual path. Gets or sets the URL that was created from the route definition. The URL that was created from the route definition. Defines a builder that creates direct routes to actions (attribute routes). Gets the action descriptors to which to create a route. The action descriptors to which to create a route. Creates a route entry based on the current property values. The route entry created. Gets or sets the route constraints. The route constraints. Gets or sets the route data tokens. The route data tokens. Gets or sets the route defaults. The route defaults. Gets or sets the route name, if any; otherwise null. The route name, if any; otherwise null. Gets or sets the route order. The route order. Gets or sets the route precedence. The route precedence. Gets a value indicating whether the route is configured at the action or controller level. true when the route is configured at the action level; otherwise false (if the route is configured at the controller level). Gets or sets the route template. The route template. Defines a factory that creates a route directly to a set of action descriptors (an attribute route). Creates a direct route entry. The direct route entry. The context to use to create the route. Defines a provider for routes that directly target action descriptors (attribute routes). Gets the direct routes for a controller. A set of route entries for the controller. The controller descriptor. The action descriptors. The inline constraint resolver. defines the interface for a route expressing how to map an incoming to a particular controller and action. Gets the constraints for the route parameters. The constraints for the route parameters. Gets any additional data tokens not used directly to determine whether a route matches an incoming . The additional data tokens. Gets the default values for route parameters if not provided by the incoming . The default values for route parameters. Determine whether this route is a match for the incoming request by looking up the <see cref="!:IRouteData" /> for the route. The <see cref="!:RouteData" /> for a route if matches; otherwise null. The virtual path root. The request. Gets a virtual path data based on the route and the values provided. The virtual path data. The request message. The values. Gets the message handler that will be the recipient of the request. The message handler. Gets the route template describing the URI pattern to match against. The route template. Represents a base class route constraint. Determines whether this instance equals a specified route. True if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Provides information about a route. Gets the object that represents the route. The object that represents the route. Gets a collection of URL parameter values and default values for the route. The values that are parsed from the URL and from default values. Provides information for defining a route. Gets the name of the route to generate. Gets the order of the route relative to other routes. Gets the route template describing the URI pattern to match against. Defines the properties for HTTP route. Gets the HTTP route. The HTTP route. Gets the URI that represents the virtual path of the current HTTP route. The URI that represents the virtual path of the current HTTP route. Defines an abstraction for resolving inline constraints as instances of . Resolves the inline constraint. The the inline constraint was resolved to. The inline constraint to resolve. Defines a route prefix. Gets the route prefix. The route prefix. Represents a named route. Initializes a new instance of the class. The route name, if any; otherwise, null. The route. Gets the route name, if any; otherwise, null. The route name, if any; otherwise, null. Gets the route. The route. Represents an attribute route that may contain custom constraints. Initializes a new instance of the class. The route template. Gets the route constraints, if any; otherwise null. The route constraints, if any; otherwise null. Creates the route entry The created route entry. The context. Gets the route data tokens, if any; otherwise null. The route data tokens, if any; otherwise null. Gets the route defaults, if any; otherwise null. The route defaults, if any; otherwise null. Gets or sets the route name, if any; otherwise null. The route name, if any; otherwise null. Gets or sets the route order. The route order. Gets the route template. The route template. Represents a handler that specifies routing should not handle requests for a route template. When a route provides this class as a handler, requests matching against the route will be ignored. Initializes a new instance of the class. Represents a factory for creating URLs. Initializes a new instance of the class. Initializes a new instance of the class. The HTTP request for this instance. Creates an absolute URL using the specified path. The generated URL. The URL path, which may be a relative URL, a rooted URL, or a virtual path. Returns a link for the specified route. A link for the specified route. The name of the route. An object that contains the parameters for a route. Returns a link for the specified route. A link for the specified route. The name of the route. A route value. Gets or sets the of the current instance. The of the current instance. Returns the route for the . The route for the . The name of the route. A list of route values. Returns the route for the . The route for the . The name of the route. The route values. Constrains a route parameter to contain only lowercase or uppercase letters A through Z in the English alphabet. Initializes a new instance of the class. Constrains a route parameter to represent only Boolean values. Initializes a new instance of the class. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Constrains a route by several child constraints. Initializes a new instance of the class. The child constraints that must match for this constraint to match. Gets the child constraints that must match for this constraint to match. The child constraints that must match for this constraint to match. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Constrains a route parameter to represent only values. Initializes a new instance of the class. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route of direction. Constrains a route parameter to represent only decimal values. Initializes a new instance of the class. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Constrains a route parameter to represent only 64-bit floating-point values. Constrains a route parameter to represent only 32-bit floating-point values. Constrains a route parameter to represent only values. Initializes a new instance of the class. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Constrains a route parameter to represent only 32-bit integer values. Initializes a new instance of the class. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Constrains a route parameter to be a string of a given length or within a given range of lengths. Initializes a new instance of the class that constrains a route parameter to be a string of a given length. The minimum length of the route parameter. The maximum length of the route parameter. Gets the length of the route parameter, if one is set. Gets the maximum length of the route parameter, if one is set. Gets the minimum length of the route parameter, if one is set. Constrains a route parameter to represent only 64-bit integer values. Constrains a route parameter to be a string with a maximum length. Initializes a new instance of the class. The maximum length. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Gets the maximum length of the route parameter. The maximum length of the route parameter. Constrains a route parameter to be an integer with a maximum value. Gets the maximum value of the route parameter. Constrains a route parameter to be a string with a maximum length. Initializes a new instance of the class. The minimum length. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Gets the minimum length of the route parameter. The minimum length of the route parameter. Constrains a route parameter to be a long with a minimum value. Initializes a new instance of the class. The minimum value of the route parameter. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Gets the minimum value of the route parameter. The minimum value of the route parameter. Constrains a route by an inner constraint that doesn't fail when an optional parameter is set to its default value. Initializes a new instance of the class. The inner constraint to match if the parameter is not an optional parameter without a value Gets the inner constraint to match if the parameter is not an optional parameter without a value. The inner constraint to match if the parameter is not an optional parameter without a value. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Constraints a route parameter to be an integer within a given range of values. Initializes a new instance of the class. The minimum value. The maximum value. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Gets the maximum value of the route parameter. The maximum value of the route parameter. Gets the minimum value of the route parameter. The minimum value of the route parameter. Constrains a route parameter to match a regular expression. Initializes a new instance of the class. The pattern. Determines whether this instance equals a specified route. true if this instance equals a specified route; otherwise, false. The request. The route to compare. The name of the parameter. A list of parameter values. The route direction. Gets the regular expression pattern to match. The regular expression pattern to match. Provides a method for retrieving the innermost object of an object that might be wrapped by an <see cref="T:System.Web.Http.Services.IDecorator`1" />. Gets the innermost object which does not implement <see cref="T:System.Web.Http.Services.IDecorator`1" />. Object which needs to be unwrapped. Represents a container for service instances used by the . Note that this container only supports known types, and methods to get or set arbitrary service types will throw when called. For creation of arbitrary types, please use instead. The supported types for this container are: Passing any type which is not on this to any method on this interface will cause an to be thrown. Initializes a new instance of the class. Initializes a new instance of the class with a specified object. The object. Removes a single-instance service from the default services. The type of the service. Gets a service of the specified type. The first instance of the service, or null if the service is not found. The type of service. Gets the list of service objects for a given service type, and validates the service type. The list of service objects of the specified type. The service type. Gets the list of service objects for a given service type. The list of service objects of the specified type, or an empty list if the service is not found. The type of service. Queries whether a service type is single-instance. true if the service type has at most one instance, or false if the service type supports multiple instances. The service type. Replaces a single-instance service object. The service type. The service object that replaces the previous instance. Removes the cached values for a single service type. The service type. Defines a decorator that exposes the inner decorated object. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see . Gets the inner object. Represents a performance tracing class to log method entry/exit and duration. Initializes the class with a specified configuration. The configuration. Represents the trace writer. Invokes the specified traceAction to allow setting values in a new if and only if tracing is permitted at the given category and level. The current . It may be null but doing so will prevent subsequent trace analysis from correlating the trace to a particular request. The logical category for the trace. Users can define their own. The at which to write this trace. The action to invoke if tracing is enabled. The caller is expected to fill in the fields of the given in this action. Represents an extension methods for . Provides a set of methods and properties that help debug your code with the specified writer, request, category and exception. The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. Provides a set of methods and properties that help debug your code with the specified writer, request, category, exception, message format and argument. The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. The format of the message. The message argument. Provides a set of methods and properties that help debug your code with the specified writer, request, category, exception, message format and argument. The . The with which to associate the trace. It may be null. The logical category of the trace. The format of the message. The message argument. Displays an error message in the list with the specified writer, request, category and exception. The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. Displays an error message in the list with the specified writer, request, category, exception, message format and argument. The . The with which to associate the trace. It may be null. The logical category of the trace. The exception. The format of the message. The argument in the message. Displays an error message in the list with the specified writer, request, category, message format and argument. The . The with which to associate the trace. It may be null. The logical category of the trace. The format of the message. The argument in the message. Displays an error message in the class with the specified writer, request, category and exception. The . The with which to associate the trace. It may be null. The logical category of the trace. The exception that appears during execution. Displays an error message in the class with the specified writer, request, category and exception, message format and argument. The . The with which to associate the trace. It may be null. The logical category of the trace. The exception. The format of the message. The message argument. Displays an error message in the class with the specified writer, request, category and message format and argument. The . The with which to associate the trace. It may be null. The logical category of the trace. The format of the message. The message argument. Displays the details in the . The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. Displays the details in the . The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. The format of the message. The message argument. Displays the details in the . The . The with which to associate the trace. It may be null. The logical category of the trace. The format of the message. The message argument. Indicates the trace listeners in the Listeners collection. The . The with which to associate the trace. It may be null. The logical category of the trace. The trace level. The error occurred during execution. Indicates the trace listeners in the Listeners collection. The . The with which to associate the trace. It may be null. The logical category of the trace. The trace level. The error occurred during execution. The format of the message. The message argument. Indicates the trace listeners in the Listeners collection. The . The with which to associate the trace. It may be null. The logical category of the trace. The of the trace. The format of the message. The message argument. Traces both a begin and an end trace around a specified operation. The . The with which to associate the trace. It may be null. The logical category of the trace. The of the trace. The name of the object performing the operation. It may be null. The name of the operation being performed. It may be null. The to invoke prior to performing the operation, allowing the given to be filled in. It may be null. An <see cref="T:System.Func`1" /> that returns the that will perform the operation. The to invoke after successfully performing the operation, allowing the given to be filled in. It may be null. The to invoke if an error was encountered performing the operation, allowing the given to be filled in. It may be null. Traces both a begin and an end trace around a specified operation. The returned by the operation. The . The with which to associate the trace. It may be null. The logical category of the trace. The of the trace. The name of the object performing the operation. It may be null. The name of the operation being performed. It may be null. The to invoke prior to performing the operation, allowing the given to be filled in. It may be null. An <see cref="T:System.Func`1" /> that returns the that will perform the operation. The to invoke after successfully performing the operation, allowing the given to be filled in. The result of the completed task will also be passed to this action. This action may be null. The to invoke if an error was encountered performing the operation, allowing the given to be filled in. It may be null. The type of result produced by the . Traces both a begin and an end trace around a specified operation. The returned by the operation. The . The with which to associate the trace. It may be null. The logical category of the trace. The of the trace. The name of the object performing the operation. It may be null. The name of the operation being performed. It may be null. The to invoke prior to performing the operation, allowing the given to be filled in. It may be null. An <see cref="T:System.Func`1" /> that returns the that will perform the operation. The to invoke after successfully performing the operation, allowing the given to be filled in. It may be null. The to invoke if an error was encountered performing the operation, allowing the given to be filled in. It may be null. Indicates the warning level of execution. The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. Indicates the warning level of execution. The . The with which to associate the trace. It may be null. The logical category of the trace. The error occurred during execution. The format of the message. The message argument. Indicates the warning level of execution. The . The with which to associate the trace. It may be null. The logical category of the trace. The format of the message. The message argument. Specifies an enumeration of tracing categories. An action category. The controllers category. The filters category. The formatting category. The message handlers category. The model binding category. The request category. The routing category. Specifies the kind of tracing operation. Trace marking the beginning of some operation. Trace marking the end of some operation. Single trace, not part of a Begin/End trace pair. Specifies an enumeration of tracing level. Trace level for debugging traces. Trace level for error traces. Trace level for fatal traces. Trace level for informational traces. Tracing is disabled. Trace level for warning traces. Represents a trace record. Initializes a new instance of the class. The message request. The trace category. The trace level. Gets or sets the tracing category. The tracing category. Gets or sets the exception. The exception. Gets or sets the kind of trace. The kind of trace. Gets or sets the tracing level. The tracing level. Gets or sets the message. The message. Gets or sets the logical operation name being performed. The logical operation name being performed. Gets or sets the logical name of the object performing the operation. The logical name of the object performing the operation. Gets the optional user-defined properties. The optional user-defined properties. Gets the from the record. The from the record. Gets the correlation ID from the . The correlation ID from the . Gets or sets the associated with the . The associated with the . Gets the of this trace (via ). The of this trace (via ). Represents a class used to recursively validate an object. Initializes a new instance of the class. Determines whether instances of a particular type should be validated. true if the type should be validated; false otherwise. The type to validate. Determines whether the is valid and adds any validation errors to the 's . true if model is valid, false otherwise. The model to be validated. The to use for validation. The used to provide model metadata. The within which the model is being validated. The to append to the key for any validation errors. Represents an interface for the validation of the models Determines whether the model is valid and adds any validation errors to the actionContext's trueif model is valid, false otherwise. The model to be validated. The to use for validation. The used to provide the model metadata. The within which the model is being validated. The to append to the key for any validation errors. This logs formatter errors to the provided . Initializes a new instance of the class. The model state. The prefix. Logs the specified model error. The error path. The error message. Logs the specified model error. The error path. The error message. Provides data for the event. Initializes a new instance of the class. The action context. The parent node. Gets or sets the context for an action. The context for an action. Gets or sets the parent of this node. The parent of this node. Provides data for the event. Initializes a new instance of the class. The action context. The parent node. Gets or sets the context for an action. The context for an action. Gets or sets the parent of this node. The parent of this node. Provides a container for model validation information. Initializes a new instance of the class, using the model metadata and state key. The model metadata. The model state key. Initializes a new instance of the class, using the model metadata, the model state key, and child model-validation nodes. The model metadata. The model state key. The model child nodes. Gets or sets the child nodes. The child nodes. Combines the current instance with a specified instance. The model validation node to combine with the current instance. Gets or sets the model metadata. The model metadata. Gets or sets the model state key. The model state key. Gets or sets a value that indicates whether validation should be suppressed. true if validation should be suppressed; otherwise, false. Validates the model using the specified execution context. The action context. Validates the model using the specified execution context and parent node. The action context. The parent node. Gets or sets a value that indicates whether all properties of the model should be validated. true if all properties of the model should be validated, or false if validation should be skipped. Occurs when the model has been validated. Occurs when the model is being validated. Represents the selection of required members by checking for any required ModelValidators associated with the member. Initializes a new instance of the class. The metadata provider. The validator providers. Indicates whether the member is required for validation. true if the member is required for validation; otherwise, false. The member. Provides a container for a validation result. Initializes a new instance of the class. Gets or sets the name of the member. The name of the member. Gets or sets the validation result message. The validation result message. Provides a base class for implementing validation logic. Initializes a new instance of the class. The validator providers. Returns a composite model validator for the model. A composite model validator for the model. An enumeration of validator providers. Gets a value that indicates whether a model property is required. true if the model property is required; otherwise, false. Validates a specified object. A list of validation results. The metadata. The container. Gets or sets an enumeration of validator providers. An enumeration of validator providers. Provides a list of validators for a model. Initializes a new instance of the class. Gets a list of validators associated with this . The list of validators. The metadata. The validator providers. Provides an abstract class for classes that implement a validation provider. Initializes a new instance of the class. Gets a type descriptor for the specified type. A type descriptor for the specified type. The type of the validation provider. Gets the validators for the model using the metadata and validator providers. The validators for the model. The metadata. An enumeration of validator providers. Gets the validators for the model using the metadata, the validator providers, and a list of attributes. The validators for the model. The metadata. An enumeration of validator providers. The list of attributes. Represents the method that creates a instance. Represents an implementation of which providers validators for attributes which derive from . It also provides a validator for types which implement . To support client side validation, you can either register adapters through the static methods on this class, or by having your validation attributes implement . The logic to support IClientValidatable is implemented in . Initializes a new instance of the class. Gets the validators for the model using the specified metadata, validator provider and attributes. The validators for the model. The metadata. The validator providers. The attributes. Registers an adapter to provide client-side validation. The type of the validation attribute. The type of the adapter. Registers an adapter factory for the validation provider. The type of the attribute. The factory that will be used to create the object for the specified attribute. Registers the default adapter. The type of the adapter. Registers the default adapter factory. The factory that will be used to create the object for the default adapter. Registers the default adapter type for objects which implement . The adapter type must derive from and it must contain a public constructor which takes two parameters of types and . The type of the adapter. Registers the default adapter factory for objects which implement . The factory. Registers an adapter type for the given modelType, which must implement . The adapter type must derive from and it must contain a public constructor which takes two parameters of types and . The model type. The type of the adapter. Registers an adapter factory for the given modelType, which must implement . The model type. The factory. Provides a factory for validators that are based on . Represents a validator provider for data member model. Initializes a new instance of the class. Gets the validators for the model. The validators for the model. The metadata. An enumerator of validator providers. A list of attributes. An implementation of which provides validators that throw exceptions when the model is invalid. Initializes a new instance of the class. Gets a list of validators associated with this . The list of validators. The metadata. The validator providers. The list of attributes. Represents the provider for the required member model validator. Initializes a new instance of the class. The required member selector. Gets the validator for the member model. The validator for the member model. The metadata. The validator providers Provides a model validator. Initializes a new instance of the class. The validator providers. The validation attribute for the model. Gets or sets the validation attribute for the model validator. The validation attribute for the model validator. Gets a value that indicates whether model validation is required. true if model validation is required; otherwise, false. Validates the model and returns the validation errors if any. A list of validation error messages for the model, or an empty list if no errors have occurred. The model metadata. The container for the model. A to represent an error. This validator will always throw an exception regardless of the actual model value. Initializes a new instance of the class. The list of model validator providers. The error message for the exception. Validates a specified object. A list of validation results. The metadata. The container. Represents the for required members. Initializes a new instance of the class. The validator providers. Gets or sets a value that instructs the serialization engine that the member must be presents when validating. true if the member is required; otherwise, false. Validates the object. A list of validation results. The metadata. The container. Provides an object adapter that can be validated. Initializes a new instance of the class. The validation provider. Validates the specified object. A list of validation results. The metadata. The container. Represents the base class for value providers whose values come from a collection that implements the interface. Retrieves the keys from the specified . The keys from the specified . The prefix. Represents an interface that is implemented by any that supports the creation of a to access the of an incoming . Defines the methods that are required for a value provider in ASP.NET MVC. Determines whether the collection contains the specified prefix. true if the collection contains the specified prefix; otherwise, false. The prefix to search for. Retrieves a value object using the specified key. The value object for the specified key, or null if the key is not found. The key of the value object to retrieve. This attribute is used to specify a custom . Initializes a new instance of the . The type of the model binder. Initializes a new instance of the . An array of model binder types. Gets the value provider factories. A collection of value provider factories. A configuration object. Gets the types of object returned by the value provider factory. A collection of types. Represents a factory for creating value-provider objects. Initializes a new instance of the class. Returns a value-provider object for the specified controller context. A value-provider object. An object that encapsulates information about the current HTTP request. Represents the result of binding a value (such as from a form post or query string) to an action-method argument property, or to the argument itself. Initializes a new instance of the class. Initializes a new instance of the class. The raw value. The attempted value. The culture. Gets or sets the raw value that is converted to a string for display. The raw value that is converted to a string for display. Converts the value that is encapsulated by this result to the specified type. The converted value. The target type. Converts the value that is encapsulated by this result to the specified type by using the specified culture information. The converted value. The target type. The culture to use in the conversion. Gets or sets the culture. The culture. Gets or set the raw value that is supplied by the value provider. The raw value that is supplied by the value provider. Represents a value provider whose values come from a list of value providers that implements the interface. Initializes a new instance of the class. Initializes a new instance of the class. The list of value providers. Determines whether the collection contains the specified . true if the collection contains the specified ; otherwise, false. The prefix to search for. Retrieves the keys from the specified . The keys from the specified . The prefix from which keys are retrieved. Retrieves a value object using the specified . The value object for the specified . The key of the value object to retrieve. Inserts an element into the collection at the specified index. The zero-based index at which should be inserted. The object to insert. Replaces the element at the specified index. The zero-based index of the element to replace. The new value for the element at the specified index. Represents a factory for creating a list of value-provider objects. Initializes a new instance of the class. The collection of value-provider factories. Retrieves a list of value-provider objects for the specified controller context. The list of value-provider objects for the specified controller context. An object that encapsulates information about the current HTTP request. A value provider for name/value pairs. Initializes a new instance of the class. The name/value pairs for the provider. The culture used for the name/value pairs. Initializes a new instance of the class, using a function delegate to provide the name/value pairs. A function delegate that returns a collection of name/value pairs. The culture used for the name/value pairs. Determines whether the collection contains the specified prefix. true if the collection contains the specified prefix; otherwise, false. The prefix to search for. Gets the keys from a prefix. The keys. The prefix. Retrieves a value object using the specified key. The value object for the specified key. The key of the value object to retrieve. Represents a value provider for query strings that are contained in a object. Initializes a new instance of the class. An object that encapsulates information about the current HTTP request. An object that contains information about the target culture. Represents a class that is responsible for creating a new instance of a query-string value-provider object. Initializes a new instance of the class. Retrieves a value-provider object for the specified controller context. A query-string value-provider object. An object that encapsulates information about the current HTTP request. Represents a value provider for route data that is contained in an object that implements the IDictionary(Of TKey, TValue) interface. Initializes a new instance of the class. An object that contain information about the HTTP request. An object that contains information about the target culture. Represents a factory for creating route-data value provider objects. Initializes a new instance of the class. Retrieves a value-provider object for the specified controller context. A value-provider object. An object that encapsulates information about the current HTTP request. ================================================ FILE: packages/Microsoft.AspNet.WebApi.Owin.5.2.2/lib/net45/System.Web.Http.Owin.xml ================================================  System.Web.Http.Owin Provides extension methods for the class. Gets the OWIN context for the specified request. The OWIN environment for the specified context, if available; otherwise . The HTTP request message. Gets the OWIN environment for the specified request. The OWIN environment for the specified request, if available; otherwise . The HTTP request message. Sets the OWIN context for the specified request. The HTTP request message. The OWIN context to set. Sets the OWIN environment for the specified request. The HTTP request message. The OWIN environment to set. Represents an authentication attribute that authenticates via OWIN middleware. Initializes a new instance of the class. The authentication type of the OWIN middleware to use. Gets the authentication type of the OWIN middleware to use. Represents an authentication filter that authenticates via OWIN middleware. Initializes a new instance of the class. The authentication type of the OWIN middleware to use. Gets a value indicating whether the filter allows multiple authentication. true if the filter allows multiple authentication; otherwise, false. Asynchronously authenticates the request. The task that completes the authentication. The authentication context. The cancellation token. Gets the authentication type of the OWIN middleware to use. The authentication type of the OWIN middleware to use. Asynchronously challenges an authentication. The task that completes the challenge. The context. The cancellation token. Provides extension methods for the class. Enables suppression of the host's default authentication. The server configuration. Represents an OWIN component that submits requests to an when invoked. Initializes a new instance of the class. The next component in the pipeline. The to submit requests to. The that determines whether or not to buffer requests and responses. Initializes a new instance of the class. The next component in the pipeline. The options to configure this adapter. Gets the cancellation token that triggers cleanup of this component. The cancellation token. Gets the that determines whether or not to buffer requests and responses. The that determines whether or not to buffer requests and responses. Releases all resources used by the current instance of the class. Releases unmanaged and optionally managed resources. true to release both managed and unmanaged resources; false to release only unmanaged resources. Gets the to use to process unhandled exceptions. The to use to process unhandled exceptions. Gets the to use to log unhandled exceptions. The to use to log unhandled exceptions. Returns . Gets the to submit requests to. The to submit requests to. Represents the options for configuring an . Initializes a new instance of the class. Gets or sets the that triggers cleanup of the . The that triggers cleanup of the . Gets or sets the that determines whether or not to buffer requests and responses. The that determines whether or not to buffer requests and responses. Gets or sets the to use to process unhandled exceptions. The to use to process unhandled exceptions. Gets or sets the to use to log unhandled exceptions. The to use to log unhandled exceptions. Gets or sets the to submit requests to. The to submit requests to. Provides the default implementation of used by the OWIN Web API adapter. Initializes a new instance of the class. Determines whether the host should buffer the HttpRequestMessage entity body. true if buffering should be used; otherwise a streamed request should be used. The host context. Determines whether the host should buffer the HttpResponseMessage entity body. true if buffering should be used; otherwise a streamed response should be used. The response. Provides the catch blocks used within this assembly. Gets the catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.BufferContent. The catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.BufferContent. Gets the catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.BufferError. The catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.BufferError. Gets the catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.ComputeContentLength. The catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.ComputeContentLength. Gets the catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.StreamContent. The catch block in System.Web.Http.Owin.HttpMessageHandlerAdapter.StreamContent. Represents a message handler that treats all OWIN authentication middleware as passive. Initializes a new instance of the class. Asynchronously sends a message request. The task that completes the asynchronous operation. The message request. The cancellation token. ================================================ FILE: packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.xml ================================================  System.Web.Http.WebHost Provides a global for ASP.NET applications. Gets the global . Extension methods for Maps the specified route template. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. Maps the specified route template and sets default route. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. An object that contains default route values. Maps the specified route template and sets default route values and constraints. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. An object that contains default route values. A set of expressions that specify values for routeTemplate. Maps the specified route template and sets default route values, constraints, and end-point message handler. A reference to the mapped route. A collection of routes for the application. The name of the route to map. The route template for the route. An object that contains default route values. A set of expressions that specify values for routeTemplate. The handler to which the request will be dispatched. A that passes ASP.NET requests into the pipeline and write the result back. Initializes a new instance of the class. The route data. Initializes a new instance of the class. The route data. The message handler to dispatch requests to. Provides code that handles an asynchronous task The asynchronous task. The HTTP context. A that returns instances of that can pass requests to a given instance. Initializes a new instance of the class. Provides the object that processes the request. An object that processes the request. An object that encapsulates information about the request. Gets the singleton instance. Provides the object that processes the request. An object that processes the request. An object that encapsulates information about the request. Provides a registration point for the simple membership pre-application start code. Registers the simple membership pre-application start code. Represents the web host buffer policy selector. Initializes a new instance of the class. Gets a value that indicates whether the host should buffer the entity body of the HTTP request. true if buffering should be used; otherwise a streamed request should be used. The host context. Uses a buffered output stream for the web host. A buffered output stream. The response. Provides the catch blocks used within this assembly. Gets the label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.WriteBufferedResponseContentAsync. The label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.WriteBufferedResponseContentAsync. Gets the label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.WriteErrorResponseContentAsync. The label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.WriteErrorResponseContentAsync. Gets the label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.ComputeContentLength. The label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.ComputeContentLength. Gets the label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.WriteStreamedResponseContentAsync. The label for the catch block in System.Web.Http.WebHost.HttpControllerHandler.WriteStreamedResponseContentAsync. Gets the label for the catch block in System.Web.Http.WebHost.WebHostExceptionCatchBlocks.HttpWebRoute.GetRouteData. The catch block in System.Web.Http.WebHost.WebHostExceptionCatchBlocks.HttpWebRoute.GetRouteData. ================================================ FILE: packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.XML ================================================ Microsoft.Owin Extension methods for . Inserts a middleware into the OWIN pipeline. The middleware type Any additional arguments for the middleware constructor Inserts into the OWIN pipeline a middleware which does not have a next middleware reference. An app that handles all requests Inserts a middleware into the OWIN pipeline. An app that handles the request or calls the given next Func Represents a middleware for executing in-line function middleware. Initializes a new instance of the class. The pointer to next middleware. A function that handles all requests. Initializes a new instance of the class. The pointer to next middleware. A function that handles the request or calls the given next function. Invokes the handler for processing the request. The OWIN context. The object that represents the request operation. Contains the parsed form values. Accessors for query, forms, etc. Accessors for headers, query, forms, etc. Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. Get the associated values from the collection in their original format. Returns null if the key is not present. Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. Create a new wrapper Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. Get the associated values from the collection in their original format. Returns null if the key is not present. Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. Contains the parsed form values. Initializes a new instance of the class. The store for the form. Represents a wrapper for owin.RequestHeaders and owin.ResponseHeaders. Represents a wrapper for owin.RequestHeaders and owin.ResponseHeaders. Get the associated values from the collection separated into individual values. Quoted values will not be split, and the quotes will be removed. The header name. the associated values from the collection separated into individual values, or null if the key is not present. Add a new value. Appends to the header if already present The header name. The header value. Add new values. Each item remains a separate array entry. The header name. The header values. Quotes any values containing comas, and then coma joins all of the values with any existing values. The header name. The header values. Sets a specific header value. The header name. The header value. Sets the specified header values without modification. The header name. The header values. Quotes any values containing comas, and then coma joins all of the values. The header name. The header values. Get or sets the associated value from the collection as a single string. The header name. the associated value from the collection as a single string or null if the key is not present. Initializes a new instance of the class. The underlying data store. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Get the associated value from the collection as a single string. The header name. the associated value from the collection as a single string or null if the key is not present. Get the associated values from the collection without modification. The header name. the associated value from the collection without modification, or null if the key is not present. Get the associated values from the collection separated into individual values. Quoted values will not be split, and the quotes will be removed. The header name. the associated values from the collection separated into individual values, or null if the key is not present. Add a new value. Appends to the header if already present The header name. The header value. Add new values. Each item remains a separate array entry. The header name. The header values. Quotes any values containing comas, and then coma joins all of the values with any existing values. The header name. The header values. Sets a specific header value. The header name. The header value. Sets the specified header values without modification. The header name. The header values. Quotes any values containing comas, and then coma joins all of the values. The header name. The header values. Adds the given header and values to the collection. The header name. The header values. Determines whether the contains a specific key. The key. true if the contains a specific key; otherwise, false. Removes the given header from the collection. The header name. true if the specified object was removed from the collection; otherwise, false. Retrieves a value from the dictionary. The header name. The value. true if the contains the key; otherwise, false. Adds a new list of items to the collection. The item to add. Clears the entire list of objects. Returns a value indicating whether the specified object occurs within this collection. The item. true if the specified object occurs within this collection; otherwise, false. Copies the elements to a one-dimensional Array instance at the specified index. The one-dimensional Array that is the destination of the specified objects copied from the . The zero-based index in at which copying begins. Removes the given item from the the collection. The item. true if the specified object was removed from the collection; otherwise, false. Gets an that contains the keys in the ;. An that contains the keys in the . Gets the number of elements contained in the ;. The number of elements contained in the . Gets a value that indicates whether the is in read-only mode. true if the is in read-only mode; otherwise, false. Get or sets the associated value from the collection as a single string. The header name. the associated value from the collection as a single string or null if the key is not present. Throws KeyNotFoundException if the key is not present. The header name. Represents the host portion of a Uri can be used to construct Uri's properly formatted and encoded for use in HTTP headers. Creates a new HostString without modification. The value should be Unicode rather than punycode, and may have a port. IPv4 and IPv6 addresses are also allowed, and also may have ports. Returns the value as normalized by ToUriComponent(). Returns the value properly formatted and encoded for use in a URI in a HTTP header. Any Unicode is converted to punycode. IPv6 addresses will have brackets added if they are missing. Creates a new HostString from the given uri component. Any punycode will be converted to Unicode. Creates a new HostString from the host and port of the give Uri instance. Punycode will be converted to Unicode. Compares the equality of the Value property, ignoring case. Compares against the given object only if it is a HostString. Gets a hash code for the value. Compares the two instances for equality. Compares the two instances for inequality. Returns the original value from the constructor. This handles cookies that are limited by per cookie length. It breaks down long cookies for responses, and reassembles them from requests. Get the reassembled cookie. Non chunked cookies are returned normally. Cookies with missing chunks just have their "chunks:XX" header returned. The reassembled cookie, if any, or null. Appends a new response cookie to the Set-Cookie header. If the cookie is larger than the given size limit then it will be broken down into multiple cookies as follows: Set-Cookie: CookieName=chunks:3; path=/ Set-Cookie: CookieNameC1=Segment1; path=/ Set-Cookie: CookieNameC2=Segment2; path=/ Set-Cookie: CookieNameC3=Segment3; path=/ Deletes the cookie with the given key by setting an expired state. If a matching chunked cookie exists on the request, delete each chunk. The maximum size of cookie to send back to the client. If a cookie exceeds this size it will be broken down into multiple cookies. Set this value to null to disable this behavior. The default is 4090 characters, which is supported by all common browsers. Note that browsers may also have limits on the total size of all cookies per domain, and on the number of cookies per domain. Throw if not all chunks of a cookie are available on a request for re-assembly. This wraps OWIN environment dictionary and provides strongly typed accessors. Gets a value from the OWIN environment, or returns default(T) if not present. The type of the value. The key of the value to get. The value with the specified key or the default(T) if not present. Sets the given key and value in the OWIN environment. The type of the value. The key of the value to set. The value to set. This instance. Gets a wrapper exposing request specific properties. A wrapper exposing request specific properties. Gets a wrapper exposing response specific properties. A wrapper exposing response specific properties. Gets the Authentication middleware functionality available on the current request. The authentication middleware functionality available on the current request. Gets the OWIN environment. The OWIN environment. Gets or sets the host.TraceOutput environment value. The host.TraceOutput TextWriter. This wraps OWIN environment dictionary and provides strongly typed accessors. Asynchronously reads and parses the request body as a form. The parsed form data. Gets a value from the OWIN environment, or returns default(T) if not present. The type of the value. The key of the value to get. The value with the specified key or the default(T) if not present. Sets the given key and value in the OWIN environment. The type of the value. The key of the value to set. The value to set. This instance. Gets the OWIN environment. The OWIN environment. Gets the request context. The request context. Gets or set the HTTP method. The HTTP method. Gets or set the HTTP request scheme from owin.RequestScheme. The HTTP request scheme from owin.RequestScheme. Returns true if the owin.RequestScheme is https. true if this request is using https; otherwise, false. Gets or set the Host header. May include the port. The Host header. Gets or set the owin.RequestPathBase. The owin.RequestPathBase. Gets or set the request path from owin.RequestPath. The request path from owin.RequestPath. Gets or set the query string from owin.RequestQueryString. The query string from owin.RequestQueryString. Gets the query value collection parsed from owin.RequestQueryString. The query value collection parsed from owin.RequestQueryString. Gets the uniform resource identifier (URI) associated with the request. The uniform resource identifier (URI) associated with the request. Gets or set the owin.RequestProtocol. The owin.RequestProtocol. Gets the request headers. The request headers. Gets the collection of Cookies for this request. The collection of Cookies for this request. Gets or sets the Content-Type header. The Content-Type header. Gets or sets the Cache-Control header. The Cache-Control header. Gets or sets the Media-Type header. The Media-Type header. Gets or set the Accept header. The Accept header. Gets or set the owin.RequestBody Stream. The owin.RequestBody Stream. Gets or sets the cancellation token for the request. The cancellation token for the request. Gets or set the server.LocalIpAddress. The server.LocalIpAddress. Gets or set the server.LocalPort. The server.LocalPort. Gets or set the server.RemoteIpAddress. The server.RemoteIpAddress. Gets or set the server.RemotePort. The server.RemotePort. Gets or set the server.User. The server.User. This wraps OWIN environment dictionary and provides strongly typed accessors. Registers for an event that fires when the response headers are sent. The callback method. The callback state. Sets a 302 response status code and the Location header. The location where to redirect the client. Writes the given text to the response body stream using UTF-8. The response data. Writes the given bytes to the response body stream. The response data. Writes the given bytes to the response body stream. The response data. The zero-based byte offset in the parameter at which to begin copying bytes. The number of bytes to write. Asynchronously writes the given text to the response body stream using UTF-8. The response data. A Task tracking the state of the write operation. Asynchronously writes the given text to the response body stream using UTF-8. The response data. A token used to indicate cancellation. A Task tracking the state of the write operation. Asynchronously writes the given bytes to the response body stream. The response data. A Task tracking the state of the write operation. Asynchronously writes the given bytes to the response body stream. The response data. A token used to indicate cancellation. A Task tracking the state of the write operation. Asynchronously writes the given bytes to the response body stream. The response data. The zero-based byte offset in the parameter at which to begin copying bytes. The number of bytes to write. A token used to indicate cancellation. A Task tracking the state of the write operation. Gets a value from the OWIN environment, or returns default(T) if not present. The type of the value. The key of the value to get. The value with the specified key or the default(T) if not present. Sets the given key and value in the OWIN environment. The type of the value. The key of the value to set. The value to set. This instance. Gets the OWIN environment. The OWIN environment. Gets the request context. The request context. Gets or sets the optional owin.ResponseStatusCode. The optional owin.ResponseStatusCode, or 200 if not set. Gets or sets the the optional owin.ResponseReasonPhrase. The the optional owin.ResponseReasonPhrase. Gets or sets the owin.ResponseProtocol. The owin.ResponseProtocol. Gets the response header collection. The response header collection. Gets a collection used to manipulate the Set-Cookie header. A collection used to manipulate the Set-Cookie header. Gets or sets the Content-Length header. The Content-Length header. Gets or sets the Content-Type header. The Content-Type header. Gets or sets the Expires header. The Expires header. Gets or sets the E-Tag header. The E-Tag header. Gets or sets the owin.ResponseBody Stream. The owin.ResponseBody Stream. Used to mark which class in an assembly should be used for automatic startup. Initializes a new instance of the class The startup class Initializes a new instance of the class A non-default configuration, e.g. staging. The startup class Initializes a new instance of the class The startup class Specifies which method to call Initializes a new instance of the class A non-default configuration, e.g. staging. The startup class Specifies which method to call A non-default configuration if any. e.g. Staging. The startup class The name of the configuration method An ordered list of known Asp.Net integrated pipeline stages. More details on the ASP.NET integrated pipeline can be found at http://msdn.microsoft.com/en-us/library/system.web.httpapplication.aspx Corresponds to the AuthenticateRequest stage of the ASP.NET integrated pipeline. Corresponds to the PostAuthenticateRequest stage of the ASP.NET integrated pipeline. Corresponds to the AuthorizeRequest stage of the ASP.NET integrated pipeline. Corresponds to the PostAuthorizeRequest stage of the ASP.NET integrated pipeline. Corresponds to the ResolveRequestCache stage of the ASP.NET integrated pipeline. Corresponds to the PostResolveRequestCache stage of the ASP.NET integrated pipeline. Corresponds to the MapRequestHandler stage of the ASP.NET integrated pipeline. Corresponds to the PostMapRequestHandler stage of the ASP.NET integrated pipeline. Corresponds to the AcquireRequestState stage of the ASP.NET integrated pipeline. Corresponds to the PostAcquireRequestState stage of the ASP.NET integrated pipeline. Corresponds to the PreRequestHandlerExecute stage of the ASP.NET integrated pipeline. Extension methods for the MapMiddleware If the request path starts with the given pathMatch, execute the app configured via configuration parameter instead of continuing to the next component in the pipeline. The path to match The branch to take for positive path matches If the request path starts with the given pathMatch, execute the app configured via configuration parameter instead of continuing to the next component in the pipeline. The path to match The branch to take for positive path matches Used to create path based branches in your application pipeline. The owin.RequestPathBase is not included in the evaluation, only owin.RequestPath. Matching paths have the matching piece removed from owin.RequestPath and added to the owin.RequestPathBase. Initializes a new instance of the class The normal pipeline taken for a negative match Process an individual request. Options for the Map middleware The path to match The branch taken for a positive match Extension methods for the MapWhenMiddleware Branches the request pipeline based on the result of the given predicate. Invoked with the request environment to determine if the branch should be taken Configures a branch to take Branches the request pipeline based on the async result of the given predicate. Invoked asynchronously with the request environment to determine if the branch should be taken Configures a branch to take Determines if the request should take a specific branch of the pipeline by passing the environment to a user defined callback. Initializes a new instance of the class The normal application pipeline Process an individual request. Options for the MapWhen middleware The user callback that determines if the branch should be taken The async user callback that determines if the branch should be taken The branch taken for a positive match This wraps OWIN environment dictionary and provides strongly typed accessors. Create a new context with only request and response header collections. Create a new wrapper. OWIN environment dictionary which stores state information about the request, response and relevant server state. Gets a value from the OWIN environment, or returns default(T) if not present. The type of the value. The key of the value to get. The value with the specified key or the default(T) if not present. Sets the given key and value in the OWIN environment. The type of the value. The key of the value to set. The value to set. This instance. Gets a wrapper exposing request specific properties. A wrapper exposing request specific properties. Gets a wrapper exposing response specific properties. A wrapper exposing response specific properties. Gets the Authentication middleware functionality available on the current request. The authentication middleware functionality available on the current request. Gets the OWIN environment. The OWIN environment. Gets or sets the host.TraceOutput environment value. The host.TraceOutput TextWriter. Provides correct escaping for Path and PathBase values when needed to reconstruct a request or redirect URI string Represents the empty path. This field is read-only. Initialize the path string with a given value. This value must be in un-escaped format. Use PathString.FromUriComponent(value) if you have a path value which is in an escaped format. The unescaped path to be assigned to the Value property. Provides the path string escaped in a way which is correct for combining into the URI representation. The escaped path value Provides the path string escaped in a way which is correct for combining into the URI representation. The escaped path value Returns an PathString given the path as it is escaped in the URI format. The string MUST NOT contain any value that is not a path. The escaped path as it appears in the URI format. The resulting PathString Returns an PathString given the path as from a Uri object. Relative Uri objects are not supported. The Uri object The resulting PathString Checks if this instance starts with or exactly matches the other instance. Only full segments are matched. Checks if this instance starts with or exactly matches the other instance. Only full segments are matched. Any remaining segments from this instance not included in the other instance. Adds two PathString instances into a combined PathString value. The combined PathString value Combines a PathString and QueryString into the joined URI formatted string value. The joined URI formatted string value Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. The second PathString for comparison. True if both PathString values are equal Compares this PathString value to another value using a specific StringComparison type The second PathString for comparison The StringComparison type to use True if both PathString values are equal Compares this PathString value to another value. The default comparison is StringComparison.OrdinalIgnoreCase. The second PathString for comparison. True if both PathString values are equal Returns the hash code for the PathString value. The hash code is provided by the OrdinalIgnoreCase implementation. The hash code Operator call through to Equals The left parameter The right parameter True if both PathString values are equal Operator call through to Equals The left parameter The right parameter True if both PathString values are not equal Operator call through to Add The left parameter The right parameter The PathString combination of both values Operator call through to Add The left parameter The right parameter The PathString combination of both values The unescaped path value True if the path is not empty Provides correct handling for QueryString value when needed to reconstruct a request or redirect URI string Represents the empty query string. This field is read-only. Initialize the query string with a given value. This value must be in escaped and delimited format without a leading '?' character. The query string to be assigned to the Value property. Initialize a query string with a single given parameter name and value. The value is The unencoded parameter name The unencoded parameter value Provides the query string escaped in a way which is correct for combining into the URI representation. A leading '?' character will be prepended unless the Value is null or empty. Characters which are potentially dangerous are escaped. The query string value Provides the query string escaped in a way which is correct for combining into the URI representation. A leading '?' character will be prepended unless the Value is null or empty. Characters which are potentially dangerous are escaped. The query string value Returns an QueryString given the query as it is escaped in the URI format. The string MUST NOT contain any value that is not a query. The escaped query as it appears in the URI format. The resulting QueryString Returns an QueryString given the query as from a Uri object. Relative Uri objects are not supported. The Uri object The resulting QueryString Indicates whether the current instance is equal to the other instance. Indicates whether the current instance is equal to the other instance. Returns the hash code for this instance. Compares the two instances for equality. Compares the two instances for inequality. The escaped query string without the leading '?' character True if the query string is not empty A wrapper for the request Cookie header Create a new wrapper Returns null rather than throwing KeyNotFoundException A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to Conversion delegate must take one parameter.. Looks up a localized string similar to The cookie key and options are larger than ChunksSize, leaving no room for data.. Looks up a localized string similar to The chunked cookie is incomplete. Only {0} of the expected {1} chunks were found, totaling {2} characters. A client size limit may have been exceeded.. Looks up a localized string similar to The type '{0}' does not match any known middleware pattern.. Looks up a localized string similar to The OWIN key 'server.OnSendingHeaders' is not available for this request.. Looks up a localized string similar to The class '{0}' does not have a constructor taking {1} arguments.. Looks up a localized string similar to No conversion available between {0} and {1}.. Looks up a localized string similar to The path must not end with a '/'. Looks up a localized string similar to The path must start with a '/' followed by one or more characters.. Looks up a localized string similar to The path is required. Looks up a localized string similar to The query string must start with a '?' unless null or empty.. A standard implementation of IAppBuilder Initializes a new instance of the the type. Adds a middleware node to the OWIN function pipeline. The middleware are invoked in the order they are added: the first middleware passed to Use will be the outermost function, and the last middleware passed to Use will be the innermost. The middleware parameter determines which behavior is being chained into the pipeline. If the middleware given to Use is a Delegate, then it will be invoked with the "next app" in the chain as the first parameter. If the delegate takes more than the single argument, then the additional values must be provided to Use in the args array. If the middleware given to Use is a Type, then the public constructor will be invoked with the "next app" in the chain as the first parameter. The resulting object must have a public Invoke method. If the object has constructors which take more than the single "next app" argument, then additional values may be provided in the args array. Any additional args passed to Use will be passed as additional values, following the "next app" parameter, when the OWIN call pipeline is build. They are passed as additional parameters if the middleware parameter is a Delegate, or as additional constructor arguments if the middle parameter is a Type. The IAppBuilder itself is returned. This enables you to chain your use statements together. The New method creates a new instance of an IAppBuilder. This is needed to create a tree structure in your processing, rather than a linear pipeline. The new instance share the same Properties, but will be created with a new, empty middleware list. To create a tangent pipeline you would first call New, followed by several calls to Use on the new builder, ending with a call to Build on the new builder. The return value from Build will be the entry-point to your tangent pipeline. This entry-point may now be added to the main pipeline as an argument to a switching middleware, which will either call the tangent pipeline or the "next app", based on something in the request. That said - all of that work is typically hidden by a middleware like Map, which will do that for you. The new instance of the IAppBuilder implementation The Build is called at the point when all of the middleware should be chained together. This is typically done by the hosting component which created the app builder, and does not need to be called by the startup method if the IAppBuilder is passed in. The Type argument indicates which calling convention should be returned, and is typically typeof() for the OWIN calling convention. Returns an instance of the pipeline's entry point. This object may be safely cast to the type which was provided Contains arbitrary properties which may added, examined, and modified by components during the startup sequence. Returns . Simple object used by AppBuilder as seed OWIN callable if the builder.Properties["builder.DefaultApp"] is not set Abstracts the system clock to facilitate testing. Retrieves the current system time in UTC. Provides access to the normal system clock. Retrieves the current system time in UTC. Response generation utilities. Append the given query to the uri. The base uri. The query string to append, if any. The combine result. Append the given query key and value to the uri. The base uri. The name of the query key. The query value. The combine result. Append the given query keys and values to the uri. The base uri. A collection of name value query pairs to append. The combine result. A wrapper for the response Set-Cookie header Create a new wrapper Add a new cookie and value Add a new cookie Sets an expired cookie Sets an expired cookie Acts as the return value from calls to the IAuthenticationManager's AuthenticeAsync methods. Create an instance of the result object Assigned to Identity. May be null. Assigned to Properties. Contains extra information carried along with the identity. Assigned to Description. Contains information describing the authentication provider. Contains the claims that were authenticated by the given AuthenticationType. If the authentication type was not successful the Identity property will be null. Contains extra values that were provided with the original SignIn call. Contains description properties for the middleware authentication type in general. Does not vary per request. Contains information describing an authentication provider. Initializes a new instance of the class Initializes a new instance of the class Contains metadata about the authentication provider. Gets or sets the name used to reference the authentication middleware instance. Gets or sets the display name for the authentication provider. Extension methods used to indicate at which stage in the integrated pipeline prior middleware should run. Call after other middleware to specify when they should run in the integrated pipeline. The IAppBuilder. The name of the integrated pipeline in which to run. The original IAppBuilder for chaining. Call after other middleware to specify when they should run in the integrated pipeline. The IAppBuilder. The stage of the integrated pipeline in which to run. The original IAppBuilder for chaining. Logging extension methods for IAppBuilder. Sets the server.LoggerFactory in the Properties collection. Retrieves the server.LoggerFactory from the Properties collection. Creates a new ILogger instance from the server.LoggerFactory in the Properties collection. Creates a new ILogger instance from the server.LoggerFactory in the Properties collection. Creates a new ILogger instance from the server.LoggerFactory in the Properties collection. Used to create logger instances of the given name. Creates a new ILogger instance of the given name. A generic interface for logging. Aggregates most logging patterns to a single method. This must be compatible with the Func representation in the OWIN environment. To check IsEnabled call WriteCore with only TraceEventType and check the return value, no event will be written. Contains the parts of an address. Initializes a new instance. Initializes a new with the given parts. The scheme. The host. The port. The path. Creates a new A new Determines whether the specified object is equal to the current object. The other object. true if the specified object is equal to the current object; otherwise, false. Determines whether the specified object is equal to the current object. The other object. true if the specified object is equal to the current object; otherwise, false. Returns the hash code for this instance. The hash code for this instance. Determines whether two specified instances of are equal. The first object to compare. The second object to compare. true if left and right represent the same address; otherwise, false. Determines whether two specified instances of are not equal. The first object to compare. The second object to compare. true if left and right do not represent the same address; otherwise, false. Gets a specified key and value from the underlying dictionary. The key. Sets a specified key and value in the underlying dictionary. The key. The value. Gets the internal dictionary for this collection. The internal dictionary for this collection. The uri scheme. The uri host. The uri port. The uri path. Wraps the host.Addresses list. Initializes a new instance of the class. The address list to set to the collection. Adds the specified address to the collection. The address to add to the collection. Gets the enumerator that iterates through the collection. The enumerator that can be used to iterate through the collection. Gets the enumerator that iterates through the collection. The enumerator that can be used to iterate through the collection. Creates a new empty instance of . A new empty instance of . Determines whether the current collection is equal to the specified collection. The other collection to compare to the current collection. true if current collection is equal to the specified collection; otherwise, false. Determines whether the current collection is equal to the specified object. The object to compare to the current collection. true if current collection is equal to the specified object; otherwise, false. Gets the hash code for this instance. The hash code for this instance. Determines whether the first collection is equal to the second collection. The first collection to compare. The second collection to compare. true if both collections are equal; otherwise, false. Determines whether the first collection is not equal to the second collection. The first collection to compare. The second collection to compare. true if both collections are not equal; otherwise, false. Gets the underlying address list. The underlying address list. Gets the number of elements in the collection. The number of elements in the collection. Gets the item with the specified index from the collection. The index. The item with the specified index. A wrapper for the IDictionary. Initializes a new instance of the class. Determines whether the current AppProperties is equal to the specified AppProperties. The other AppProperties to compare with the current instance. true if the current AppProperties is equal to the specified AppProperties; otherwise, false. Determines whether the current AppProperties is equal to the specified object. The object to compare with the current instance. true if the current AppProperties is equal to the specified object; otherwise, false. Returns the hash code for this instance. The hash code for this instance. Determines whether the first AppPProperties is equal to the second AppProperties. The first AppPropeties to compare. The second AppPropeties to compare. true if both AppProperties are equal; otherwise, false. Determines whether the first AppPProperties is not equal to the second AppProperties. The first AppPropeties to compare. The second AppPropeties to compare. true if both AppProperties are not equal; otherwise, false. Gets the value from the dictionary with the specified key. The type of the value. The key of the value to get. The value with the specified key. Sets the value with the specified key. The key of the value to set. The value to set. This instance. Gets or sets the string value for “owin.Version”. The string value for “owin.Version”. Gets or sets the function delegate for “builder.DefaultApp”. The function delegate for “builder.DefaultApp”. Gets or sets the action delegate for “builder.AddSignatureConversion”. The action delegate for “builder.AddSignatureConversion”. Gets or sets the string value for “host.AppName”. The string value for “host.AppName”. Gets or sets the text writer for “host.TraceOutput”. The text writer for “host.TraceOutput”. Gets or sets the cancellation token for “host.OnAppDisposing”. The cancellation token for “host.OnAppDisposing”. Gets or sets the address collection for “host.Addresses”. The address collection for “host.Addresses”. Gets or sets the list of “server.Capabilities”. The list of “server.Capabilities”. Gets the underlying dictionary for this instance. The underlying dictionary for this instance. Represents the capabilities for the builder properties. Initializes a new instance of the class. Initializes a new instance of the class. A new instance of the class. Determines whether the current Capabilities instance is equal to the specified Capabilities. The other Capabilities to compare with the current instance. true if the specified object is equal to the current object; otherwise, false. Determines whether the current Capabilities is equal to the specified object. The object to compare with the current instance. true if the current Capabilities is equal to the specified object; otherwise, false. Returns the hash code for this instance. The hash code for this instance. Determines whether two specified instances of are equal. The first object to compare. The second object to compare. true if the two specified instances of are equal; otherwise, false. Determines whether two specified instances of are not equal. The first object to compare. The second object to compare. true if the two specified instances of are not equal; otherwise, false. Gets the value from the dictionary with the specified key. The type of the value. The key of the value to get. The value with the specified key. Sets the given key and value in the underlying dictionary. The key of the value to set. The value to set. This instance. The underling IDictionary Gets or sets the string value for "sendfile.Version" the string value for "sendfile.Version" Gets or sets the websocket version. The websocket version. Options used to create a new cookie. Creates a default cookie with a path of '/'. Gets or sets the domain to associate the cookie with. The domain to associate the cookie with. Gets or sets the cookie path. The cookie path. Gets or sets the expiration date and time for the cookie. The expiration date and time for the cookie. Gets or sets a value that indicates whether to transmit the cookie using Secure Sockets Layer (SSL)—that is, over HTTPS only. true to transmit the cookie only over an SSL connection (HTTPS); otherwise, false. Gets or sets a value that indicates whether a cookie is accessible by client-side script. true if a cookie is accessible by client-side script; otherwise, false. Provides a default ILoggerFactory. Provides a default ILoggerFactory based on System.Diagnostics.TraceSorce. Extension methods for IAppBuilder. The Build is called at the point when all of the middleware should be chained together. May be called to build pipeline branches. The request processing entry point for this section of the pipeline. The Build is called at the point when all of the middleware should be chained together. May be called to build pipeline branches. The application signature. The request processing entry point for this section of the pipeline. Adds converters for adapting between disparate application signatures. Adds converters for adapting between disparate application signatures. Provides helper methods for processing requests. Parses an HTTP form body. The HTTP form body to parse. The object containing the parsed HTTP form body. Converts between an OwinMiddlware and an . An abstract base class for a standard middleware pattern. Instantiates the middleware with an optional pointer to the next component. Process an individual request. The optional next component. Transitions between and OwinMiddleware. OWIN environment dictionary which stores state information about the request, response and relevant server state. Adds adapters between and OwinMiddleware. Adds adapters between and OwinMiddleware. This wraps OWIN environment dictionary and provides strongly typed accessors. Create a new context with only request and response header collections. Create a new environment wrapper exposing request properties. OWIN environment dictionary which stores state information about the request, response and relevant server state. Asynchronously reads and parses the request body as a form. The parsed form data. Gets a value from the OWIN environment, or returns default(T) if not present. The type of the value. The key of the value to get. The value with the specified key or the default(T) if not present. Sets the given key and value in the OWIN environment. The type of the value. The key of the value to set. The value to set. This instance. Gets the OWIN environment. The OWIN environment. Gets the request context. The request context. Gets or set the HTTP method. The HTTP method. Gets or set the HTTP request scheme from owin.RequestScheme. The HTTP request scheme from owin.RequestScheme. Returns true if the owin.RequestScheme is https. true if this request is using https; otherwise, false. Gets or set the Host header. May include the port. The Host header. Gets or set the owin.RequestPathBase. The owin.RequestPathBase. Gets or set the request path from owin.RequestPath. The request path from owin.RequestPath. Gets or set the query string from owin.RequestQueryString. The query string from owin.RequestQueryString. Gets the query value collection parsed from owin.RequestQueryString. The query value collection parsed from owin.RequestQueryString. Gets the uniform resource identifier (URI) associated with the request. The uniform resource identifier (URI) associated with the request. Gets or set the owin.RequestProtocol. The owin.RequestProtocol. Gets the request headers. The request headers. Gets the collection of Cookies for this request. The collection of Cookies for this request. Gets or sets the Content-Type header. The Content-Type header. Gets or sets the Cache-Control header. The Cache-Control header. Gets or sets the Media-Type header. The Media-Type header. Gets or set the Accept header. The Accept header. Gets or set the owin.RequestBody Stream. The owin.RequestBody Stream. Gets or sets the cancellation token for the request. The cancellation token for the request. Gets or set the server.LocalIpAddress. The server.LocalIpAddress. Gets or set the server.LocalPort. The server.LocalPort. Gets or set the server.RemoteIpAddress. The server.RemoteIpAddress. Gets or set the server.RemotePort. The server.RemotePort. Gets or set the server.User. The server.User. This wraps OWIN environment dictionary and provides strongly typed accessors. Create a new context with only request and response header collections. Creates a new environment wrapper exposing response properties. OWIN environment dictionary which stores state information about the request, response and relevant server state. Registers for an event that fires when the response headers are sent. The callback method. The callback state. Sets a 302 response status code and the Location header. The location where to redirect the client. Writes the given text to the response body stream using UTF-8. The response data. Writes the given bytes to the response body stream. The response data. Writes the given bytes to the response body stream. The response data. The zero-based byte offset in the parameter at which to begin copying bytes. The number of bytes to write. Asynchronously writes the given text to the response body stream using UTF-8. The response data. A Task tracking the state of the write operation. Asynchronously writes the given text to the response body stream using UTF-8. The response data. A token used to indicate cancellation. A Task tracking the state of the write operation. Asynchronously writes the given bytes to the response body stream. The response data. A Task tracking the state of the write operation. Asynchronously writes the given bytes to the response body stream. The response data. A token used to indicate cancellation. A Task tracking the state of the write operation. Asynchronously writes the given bytes to the response body stream. The response data. The zero-based byte offset in the parameter at which to begin copying bytes. The number of bytes to write. A token used to indicate cancellation. A Task tracking the state of the write operation. Gets a value from the OWIN environment, or returns default(T) if not present. The type of the value. The key of the value to get. The value with the specified key or the default(T) if not present. Sets the given key and value in the OWIN environment. The type of the value. The key of the value to set. The value to set. This instance. Gets the OWIN environment. The OWIN environment. Gets the request context. The request context. Gets or sets the optional owin.ResponseStatusCode. The optional owin.ResponseStatusCode, or 200 if not set. Gets or sets the the optional owin.ResponseReasonPhrase. The the optional owin.ResponseReasonPhrase. Gets or sets the owin.ResponseProtocol. The owin.ResponseProtocol. Gets the response header collection. The response header collection. Gets a collection used to manipulate the Set-Cookie header. A collection used to manipulate the Set-Cookie header. Gets or sets the Content-Length header. The Content-Length header. Gets or sets the Content-Type header. The Content-Type header. Gets or sets the Expires header. The Expires header. Gets or sets the E-Tag header. The E-Tag header. Gets or sets the owin.ResponseBody Stream. The owin.ResponseBody Stream. Used to interact with authentication middleware that have been chained in the pipeline Lists all of the description data provided by authentication middleware that have been chained The authentication descriptions Lists the description data of all of the authentication middleware which are true for a given predicate A function provided by the caller which returns true for descriptions that should be in the returned list The authentication descriptions Call back through the middleware to ask for a specific form of authentication to be performed on the current request Identifies which middleware should respond to the request for authentication. This value is compared to the middleware's Options.AuthenticationType property. Returns an object with the results of the authentication. The AuthenticationResult.Identity may be null if authentication failed. Even if the Identity property is null, there may still be AuthenticationResult.properties and AuthenticationResult.Description information returned. Called to perform any number of authentication mechanisms on the current request. Identifies one or more middleware which should attempt to respond Returns the AuthenticationResult information from the middleware which responded. The order is determined by the order the middleware are in the pipeline. Latest added is first in the list. Add information into the response environment that will cause the authentication middleware to challenge the caller to authenticate. This also changes the status code of the response to 401. The nature of that challenge varies greatly, and ranges from adding a response header or changing the 401 status code to a 302 redirect. Additional arbitrary values which may be used by particular authentication types. Identify which middleware should perform their alterations on the response. If the authenticationTypes is null or empty, that means the AuthenticationMode.Active middleware should perform their alterations on the response. Add information into the response environment that will cause the authentication middleware to challenge the caller to authenticate. This also changes the status code of the response to 401. The nature of that challenge varies greatly, and ranges from adding a response header or changing the 401 status code to a 302 redirect. Identify which middleware should perform their alterations on the response. If the authenticationTypes is null or empty, that means the AuthenticationMode.Active middleware should perform their alterations on the response. Add information to the response environment that will cause the appropriate authentication middleware to grant a claims-based identity to the recipient of the response. The exact mechanism of this may vary. Examples include setting a cookie, to adding a fragment on the redirect url, or producing an OAuth2 access code or token response. Contains additional properties the middleware are expected to persist along with the claims. These values will be returned as the AuthenticateResult.properties collection when AuthenticateAsync is called on subsequent requests. Determines which claims are granted to the signed in user. The ClaimsIdentity.AuthenticationType property is compared to the middleware's Options.AuthenticationType value to determine which claims are granted by which middleware. The recommended use is to have a single ClaimsIdentity which has the AuthenticationType matching a specific middleware. Add information to the response environment that will cause the appropriate authentication middleware to grant a claims-based identity to the recipient of the response. The exact mechanism of this may vary. Examples include setting a cookie, to adding a fragment on the redirect url, or producing an OAuth2 access code or token response. Determines which claims are granted to the signed in user. The ClaimsIdentity.AuthenticationType property is compared to the middleware's Options.AuthenticationType value to determine which claims are granted by which middleware. The recommended use is to have a single ClaimsIdentity which has the AuthenticationType matching a specific middleware. Add information to the response environment that will cause the appropriate authentication middleware to revoke any claims identity associated the the caller. The exact method varies. Additional arbitrary values which may be used by particular authentication types. Identifies which middleware should perform the work to sign out. Multiple authentication types may be provided to clear out more than one cookie at a time, or to clear cookies and redirect to an external single-sign out url. Add information to the response environment that will cause the appropriate authentication middleware to revoke any claims identity associated the the caller. The exact method varies. Identifies which middleware should perform the work to sign out. Multiple authentication types may be provided to clear out more than one cookie at a time, or to clear cookies and redirect to an external single-sign out url. Returns the current user for the request Exposes the security.Challenge environment value as a strong type. Exposes the security.SignIn environment value as a strong type. Exposes the security.SignOut environment value as a strong type. Exposes the security.Challenge environment value as a strong type. Exposes the security.SignIn environment value as a strong type. Exposes the security.SignOut environment value as a strong type. Dictionary used to store state values about the authentication session. Initializes a new instance of the class Initializes a new instance of the class State values about the authentication session. Gets or sets whether the authentication session is persisted across multiple requests. Gets or sets the full path or absolute URI to be used as an http redirect response value. Gets or sets the time at which the authentication ticket was issued. Gets or sets the time at which the authentication ticket expires. Gets or sets if refreshing the authentication session should be allowed. Exposes the security.Challenge environment value as a strong type. Initializes a new instance of the class List of the authentication types that should send a challenge in the response. Dictionary used to store state values about the authentication session. Exposes the security.SignIn environment value as a strong type. Initializes a new instance of the class. Initializes a new instance of the class. The identity associated with the user sign in. The security principal associated with the user sign in. Dictionary used to store state values about the authentication session. Exposes the security.SignOut and security.SignOutProperties environment values as a strong type. Initializes a new instance of the class Initializes a new instance of the class List of the authentication types that should be revoked on sign out. Dictionary used to store state values about the authentication session. Provides an ILoggerFactory based on System.Diagnostics.TraceSource. Initializes a new instance of the class. Creates a factory named "Microsoft.Owin". Initializes a new instance of the class. Creates a new DiagnosticsLogger for the given component name. ILogger extension methods for common scenarios. Checks if the given TraceEventType is enabled. Writes a verbose log message. Writes an informational log message. Writes a warning log message. Writes a warning log message. Writes an error log message. Writes an error log message. Writes a critical log message. Writes a critical log message. ================================================ FILE: packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.XML ================================================ Microsoft.Owin.Cors Extension methods for adding CorsMiddleware to an application pipeline. Adds a CORS middleware to your web application pipeline to allow cross domain requests. The IAppBuilder passed to your configuration method An options class that controls the middleware behavior The original app parameter Processes requests according to the provided cross domain policy. Creates a new instance of CorsMiddleware. Evaluates and applies the CORS policy. Responses will be generated for preflight requests. Requests that are permitted by the CORS policy will be passed onto the next middleware. Contains the options used by the CorsMiddleware A policy that allows all headers, all methods, any origin and supports credentials The cors policy to apply The cors engine A pluggable CORS policy provider that always returns null by default. Defines how to select a CORS policy for a given request. Selects a CORS policy to apply for the given request. The CORS policy to apply to the request, or null if no policy applies and the request should be passed through to the next middleware. Creates a new CorsPolicyProvider instance. Executes the PolicyResolver unless overridden by a subclass. A pluggable callback that will be used to select the CORS policy for the given requests. ================================================ FILE: packages/Microsoft.Owin.Host.SystemWeb.3.0.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml ================================================ Microsoft.Owin.Host.SystemWeb Locates the startup class based on the following convention: AssemblyName.Startup, with a method named Configuration Allows for a fallback loader to be specified. Allows for a fallback loader and a Dependency Injection activator to be specified. Executes the loader, searching for the entry point by name. The name of the assembly and type entry point A default fallback loader that does nothing. A placeholder method that always returns null. null. A singleton instance of the NullLoader type. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to For the app startup parameter value '{0}', the assembly '{1}' was not found.. Looks up a localized string similar to For the app startup parameter value '{0}', the class '{1}' was not found in assembly '{2}'.. Looks up a localized string similar to The OwinStartup attribute discovered in assembly '{0}' referencing startup type '{1}' conflicts with the attribute in assembly '{2}' referencing startup type '{3}' because they have the same FriendlyName '{4}'. Remove or rename one of the attributes, or reference the desired type directly.. Looks up a localized string similar to The discovered startup type '{0}' conflicts with the type '{1}'. Remove or rename one of the types, or reference the desired type directly.. Looks up a localized string similar to The OwinStartupAttribute.FriendlyName value '{0}' does not match the given value '{1}' in Assembly '{2}'.. Looks up a localized string similar to No '{0}' method was found in class '{1}'.. Looks up a localized string similar to No assembly found containing a Startup or [AssemblyName].Startup class.. Looks up a localized string similar to No assembly found containing an OwinStartupAttribute.. Looks up a localized string similar to The OwinStartupAttribute.StartupType value is empty in Assembly '{0}'.. Looks up a localized string similar to The type '{0}' referenced from assembly '{1}' does not define a property 'StartupType' of type 'Type'.. Looks up a localized string similar to The given type or method '{0}' was not found. Try specifying the Assembly.. Looks up a localized string similar to The '{0}' method on class '{1}' does not have the expected signature 'void {0}(IAppBuilder)'.. Used to provide the data protection services that are derived from the MachineKey API. It is the best choice of data protection when you application is hosted by ASP.NET and all servers in the farm are running with the same Machine Key values. Returns a new instance of IDataProtection for the provider. Additional entropy used to ensure protected data may only be unprotected for the correct purposes. An instance of a data protection service Provides extension methods for . Gets the for the current request. Gets the for the current request. Provides extension methods for . Gets the for the current request. Gets the for the current request. Processes requests from System.Web as OWIN requests. Processes requests using the default OWIN application. Initiates an asynchronous call to the HTTP handler. An System.Web.HttpContextBase object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. The System.AsyncCallback to call when the asynchronous method call is complete. If callback is null, the delegate is not called. Any extra data needed to process the request. An System.IAsyncResult that contains information about the status of the process. Provides an asynchronous process End method when the process ends. An System.IAsyncResult that contains information about the status of the process. Gets a value indicating whether another request can use the System.Web.IHttpHandler instance. true. Processes a route through an OWIN pipeline. Initialize an OwinRouteHandler The method to initialize the pipeline that processes requests for the route. Provides the object that processes the request. An object that processes the request. An object that encapsulates information about the request. Registers the OWIN request processing module at application startup. Registers the OWIN request processing module. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to The following errors occurred while attempting to load the app.. Looks up a localized string similar to Cannot register for 'OnSendingHeaders' event after response headers have been sent.. Looks up a localized string similar to The key '{0}' is already present in the dictionary.. Looks up a localized string similar to To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of "false" in your web.config.. Looks up a localized string similar to To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.. Looks up a localized string similar to The given stage '{0}' is not supported.. Looks up a localized string similar to No owin.Environment item was found in the context.. Looks up a localized string similar to An exception was thrown while trying to load the client certificate:. Looks up a localized string similar to The OWIN entry point threw an exception:. Looks up a localized string similar to The IAsyncResult callback for OwinCallHandler threw an exception:. Looks up a localized string similar to Failed to register the OWIN module:. Looks up a localized string similar to The application threw one or more exceptions when notified of a client disconnect:. Looks up a localized string similar to Shutdown detection setup failed:. Looks up a localized string similar to One or more exceptions were thrown during app pool shutdown:. Looks up a localized string similar to An exception was thrown from a timer callback:. Looks up a localized string similar to An exception was thrown while processing the WebSocket:. Looks up a localized string similar to Support for WebSockets has been detected.. Looks up a localized string similar to No support for WebSockets has been detected.. Provides extension methods for registering OWIN applications as System.Web routes. Registers a route for the default OWIN application. The route collection. The route path to map to the default OWIN application. The created route. Registers a route for a specific OWIN application entry point. The OWIN application entry point type. The route collection. The route path to map to the given OWIN application. The OWIN application entry point. The created route. Invokes the System.Action startup delegate to build the OWIN application and then registers a route for it on the given path. The route collection. The route path to map to the given OWIN application. A System.Action delegate invoked to build the OWIN application. The created route. Registers a route for the default OWIN application. The route collection. The given name of the route. The route path to map to the default OWIN application. The created route. Registers a route for a specific OWIN application entry point. The OWIN application entry point type. The route collection. The given name of the route. The route path to map to the given OWIN application. The OWIN application entry point. The created route. Invokes the System.Action startup delegate to build the OWIN application and then registers a route for it on the given path. The route collection. The given name of the route. The route path to map to the given OWIN application. A System.Action delegate invoked to build the OWIN application. The created route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The values to use if the URL does not contain all the parameters. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The values to use if the URL does not contain all the parameters. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. The method to initialize the pipeline that processes requests for the route. Provides a way to define routes for an OWIN pipeline. The route collection. The name of the route. The URL pattern for the route. The values to use if the URL does not contain all the parameters. A regular expression that specifies valid values for a URL parameter. Custom values that are passed to the route handler, but which are not used to determine whether the route matches a specific URL pattern. These values are passed to the route handler, where they can be used for processing the request. The method to initialize the pipeline that processes requests for the route. ================================================ FILE: packages/Microsoft.Owin.Security.3.0.0/lib/net45/Microsoft.Owin.Security.XML ================================================ Microsoft.Owin.Security Provides extensions methods for app.Property values that are only needed by implementations of authentication middleware. Returns the previously set AuthenticationType that external sign in middleware should use when the browser navigates back to their return url. App builder passed to the application startup code Called by middleware to change the name of the AuthenticationType that external middleware should use when the browser navigates back to their return url. App builder passed to the application startup code AuthenticationType that external middleware should sign in as. Controls the behavior of authentication middleware In Active mode the authentication middleware will alter the user identity as the request arrives, and will also alter a plain 401 as the response leaves. In Passive mode the authentication middleware will only provide user identity when asked, and will only alter 401 responses where the authentication type named in the extra challenge data. Base Options for all authentication middleware Initialize properties of AuthenticationOptions base class Assigned to the AuthenticationType property The AuthenticationType in the options corresponds to the IIdentity AuthenticationType property. A different value may be assigned in order to use the same authentication middleware type more than once in a pipeline. If Active the authentication middleware alter the request user coming in and alter 401 Unauthorized responses going out. If Passive the authentication middleware will only provide identity and alter responses when explicitly indicated by the AuthenticationType. Additional information about the authentication type which is made available to the application. String constants used only by the Security assembly Used by middleware extension methods to coordinate the default value Options property SignInAsAuthenticationType Factory used to create IDataProtection instances Returns a new instance of IDataProtection for the provider. Additional entropy used to ensure protected data may only be unprotected for the correct purposes. An instance of a data protection service Service used to protect and unprotect data Called to protect user data. The original data that must be protected A different byte array that may be unprotected or altered only by software that has access to the an identical IDataProtection service. Called to unprotect user data The byte array returned by a call to Protect on an identical IDataProtection service. The byte array identical to the original userData passed to Protect. Base class for the per-request work performed by most authentication middleware. Specifies which type for of AuthenticationOptions property Base class for the per-request work performed by most authentication middleware. Called once per request after Initialize and Invoke. async completion Called once by common code after initialization. If an authentication middleware responds directly to specifically known paths it must override this virtual, compare the request path to it's known paths, provide any response information as appropriate, and true to stop further processing. Returning false will cause the common code to call the next middleware in line. Returning true will cause the common code to begin the async completion journey without calling the rest of the middleware pipeline. Causes the authentication logic in AuthenticateCore to be performed for the current request at most once and returns the results. Calling Authenticate more than once will always return the original value. This method should always be called instead of calling AuthenticateCore directly. The ticket data provided by the authentication logic The core authentication logic which must be provided by the handler. Will be invoked at most once per request. Do not call directly, call the wrapping Authenticate method instead. The ticket data provided by the authentication logic Causes the ApplyResponseCore to be invoked at most once per request. This method will be invoked either earlier, when the response headers are sent as a result of a response write or flush, or later, as the last step when the original async call to the middleware is returning. Core method that may be overridden by handler. The default behavior is to call two common response activities, one that deals with sign-in/sign-out concerns, and a second to deal with 401 challenges. Override this method to dela with sign-in/sign-out concerns, if an authentication scheme in question deals with grant/revoke as part of it's request flow. (like setting/deleting cookies) Override this method to dela with 401 challenge concerns, if an authentication scheme in question deals an authentication interaction as part of it's request flow. (like adding a response header, or changing the 401 result to 302 of a login page or external sign-in location.) Initialize is called once per request to contextualize this instance with appropriate state. The original options passed by the application control behavior The utility object to observe the current request and response async completion Contains user identity information as well as additional authentication state. Initializes a new instance of the class Gets the authenticated user identity. Additional state values for the authentication session. Interface for providing pinned certificate validation, which checks HTTPS communication against a known good list of certificates to protect against compromised or rogue CAs issuing certificates for hosts without the knowledge of the host owner. Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication. An object that contains state information for this validation. The certificate used to authenticate the remote party. The chain of certificate authorities associated with the remote certificate. One or more errors associated with the remote certificate. A Boolean value that determines whether the specified certificate is accepted for authentication. Provides pinned certificate validation based on the certificate thumbprint. Initializes a new instance of the class. A set of thumbprints which are valid for an HTTPS request. Validates that the certificate thumbprints in the signing chain match at least one whitelisted thumbprint. An object that contains state information for this validation. The certificate used to authenticate the remote party. The chain of certificate authorities associated with the remote certificate. One or more errors associated with the remote certificate. A Boolean value that determines whether the specified certificate is accepted for authentication. Base class used for certain event contexts Discontinue all processing for this request and return to the client. The caller is responsible for generating the full response. Discontinue processing the request in the current middleware and pass control to the next one. Continue with normal processing. Discontinue processing the request in the current middleware and pass control to the next one. Discontinue all processing for this request. Discontinue all processing for this request and return to the client. The caller is responsible for generating the full response. Gets or set the Gets or sets the Protocol message Used to provide the data protection services that are derived from the Data Protection API. It is the best choice of data protection when you application is not hosted by ASP.NET and all processes are running as the same domain identity. Initializes a new DpapiDataProtectionProvider with a random application name. This is only useful to protect data for the duration of the current application execution. Initializes a new DpapiDataProtectionProvider which uses the given appName as part of the protection algorithm A user provided value needed to round-trip secured data. The default value comes from the IAppBuilder.Properties["owin.AppName"] when self-hosted. Returns a new instance of IDataProtection for the provider. Additional entropy used to ensure protected data may only be unprotected for the correct purposes. An instance of a data protection service Helper code used when implementing authentication middleware Helper code used when implementing authentication middleware Add an additional ClaimsIdentity to the ClaimsPrincipal in the "server.User" environment key Find response challenge details for a specific authentication middleware The authentication type to look for The authentication mode the middleware is running under The information instructing the middleware how it should behave Find response sign-in details for a specific authentication middleware The authentication type to look for The information instructing the middleware how it should behave Find response sign-out details for a specific authentication middleware The authentication type to look for The authentication mode the middleware is running under The information instructing the middleware how it should behave Base class used for certain event contexts Creates an instance of this context Prevents the request from being processed further by other components. IsRequestCompleted becomes true after calling. True if the request should not be processed further by other components. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to The AuthenticationTokenProvider's required synchronous events have not been registered.. Looks up a localized string similar to The default data protection provider may only be used when the IAppBuilder.Properties contains an appropriate 'host.AppName' key.. Looks up a localized string similar to A default value for SignInAsAuthenticationType was not found in IAppBuilder Properties. This can happen if your authentication middleware are added in the wrong order, or if one is missing.. Looks up a localized string similar to The state passed to UnhookAuthentication may only be the return value from HookAuthentication.. Provides pinned certificate validation based on the subject key identifier of the certificate. Initializes a new instance of the class. A set of subject key identifiers which are valid for an HTTPS request. Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication. An object that contains state information for this validation. The certificate used to authenticate the remote party. The chain of certificate authorities associated with the remote certificate. One or more errors associated with the remote certificate. A Boolean value that determines whether the specified certificate is accepted for authentication. The algorithm used to generate the subject public key information blob hashes. Implements a cert pinning validator passed on http://datatracker.ietf.org/doc/draft-ietf-websec-key-pinning/?include_text=1 Initializes a new instance of the class. A collection of valid base64 encoded hashes of the certificate public key information blob. The algorithm used to generate the hashes. Validates at least one SPKI hash is known. An object that contains state information for this validation. The certificate used to authenticate the remote party. The chain of certificate authorities associated with the remote certificate. One or more errors associated with the remote certificate. A Boolean value that determines whether the specified certificate is accepted for authentication. Encodes a structure of the type indicated by the value of the lpszStructType parameter. Type of encoding used. The high-order word is zero, the low-order word specifies the integer identifier for the type of the specified structure so we can use the constants in http://msdn.microsoft.com/en-us/library/windows/desktop/aa378145%28v=vs.85%29.aspx A pointer to the structure to be encoded. A pointer to a buffer to receive the encoded structure. This parameter can be NULL to retrieve the size of this information for memory allocation purposes. A pointer to a DWORD variable that contains the size, in bytes, of the buffer pointed to by the pbEncoded parameter. ================================================ FILE: packages/Microsoft.Owin.Security.Jwt.3.0.0/lib/net45/Microsoft.Owin.Security.Jwt.xml ================================================ Microsoft.Owin.Security.Jwt Provides security token information to the implementing class. Gets the issuer the credentials are for. The issuer the credentials are for. Gets all known security tokens. All known security tokens. Extension methods provided by the JWT bearer token middleware. Adds JWT bearer token middleware to your web application pipeline. The IAppBuilder passed to your configuration method. An options class that controls the middleware behavior. The original app parameter. Options for JWT Bearer Token handler configuration. Initializes a new instance of the class. Gets or sets the allowed audiences an inbound JWT will be checked against. The allowed audiences. Gets or sets the issuer security token providers which provide the signing keys a JWT signature is checked against. The issuer security token providers. Gets or sets the authentication provider. The provider. Gets or sets the authentication realm. The authentication realm. Gets or sets the used to determine if a token is valid. A System.IdentityModel.Tokens.SecurityTokenHandler designed for creating and validating Json Web Tokens. Signs and validates JSON Web Tokens. Creates a new JwtFormat with TokenHandler and UseTokenLifetime enabled by default. Initializes a new instance of the class. The allowed audience for JWTs. The issuer credential provider. Thrown if the is null. Initializes a new instance of the class. The allowed audience for JWTs. The issuer credential provider. Thrown if the is null. Initializes a new instance of the class. used to determine if a token is valid. Thrown if the is null. Transforms the specified authentication ticket into a JWT. The authentication ticket to transform into a JWT. Validates the specified JWT and builds an AuthenticationTicket from it. The JWT to validate. An AuthenticationTicket built from the Thrown if the is null. Thrown if the is not a JWT. Gets or sets a value indicating whether JWT issuers should be validated. true if the issuer should be validate; otherwise, false. A System.IdentityModel.Tokens.SecurityTokenHandler designed for creating and validating Json Web Tokens. Indicates that the authentication session lifetime (e.g. cookies) should match that of the authentication token. If the token does not provide lifetime information then normal session lifetimes will be used. This is enabled by default. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Looks up a localized string similar to One or more audiences must be specified.. Looks up a localized string similar to JWT does not contain an issuer and ValidateIssuer=true.. Looks up a localized string similar to Invalid JWT.. Looks up a localized string similar to One or more issuer credential providers must be specified.. Looks up a localized string similar to Issuer not known.. Implements an for symmetric key signed JWTs. Initializes a new instance of the class. The issuer of a JWT token. The symmetric key a JWT is signed with. Thrown when the issuer is null. Initializes a new instance of the class. The issuer of a JWT token. Symmetric keys a JWT could be signed with. Thrown when the issuer is null. Initializes a new instance of the class. The issuer of a JWT token. The base64 encoded symmetric key a JWT is signed with. Thrown when the issuer is null. Initializes a new instance of the class. The issuer of a JWT token. The base64 encoded symmetric keys a JWT could be signed with. Gets the issuer the signing keys are for. The issuer the signing keys are for. Gets all known security tokens. All known security tokens. Implements an for X509 JWTs. Initializes a new instance of the class. The issuer. The certificate. issuer or certificate Gets the issuer the credentials are for. The issuer the credentials are for. Gets all known security tokens. All known security tokens. ================================================ FILE: packages/Microsoft.Owin.Security.OAuth.3.0.0/lib/net45/Microsoft.Owin.Security.OAuth.XML ================================================ Microsoft.Owin.Security.OAuth Data object used by TokenEndpointRequest which contains parameter information when the "grant_type" is unrecognized. The parameter information when the "grant_type" is unrecognized. Data object used by TokenEndpointRequest when the "grant_type" parameter is "refresh_token". The value passed to the Token endpoint in the "refresh_token" parameter The value passed to the Token endpoint in the "scope" parameter Data object used by TokenEndpointRequest when the "grant_type" is "authorization_code". The value passed to the Token endpoint in the "code" parameter The value passed to the Token endpoint in the "redirect_uri" parameter. This MUST be provided by the caller if the original visit to the Authorize endpoint contained a "redirect_uri" parameter. Data object representing the information contained in the query string of an Authorize endpoint request. Creates a new instance populated with values from the query string parameters. Query string parameters from a request. True if the "response_type" query string contains the passed responseType. See also, http://openid.net/specs/oauth-v2-multiple-response-types-1_0.html The responseType that is expected within the "response_type" query string True if the "response_type" query string contains the passed responseType. The "response_type" query string parameter of the Authorize request. Known values are "code" and "token". The "response_mode" query string parameter of the Authorize request. Known values are "query", "fragment" and "form_post" See also, http://openid.net/specs/oauth-v2-form-post-response-mode-1_0.html The "client_id" query string parameter of the Authorize request. The "redirect_uri" query string parameter of the Authorize request. May be absent if the server should use the redirect uri known to be registered to the client id. The "scope" query string parameter of the Authorize request. May be absent if the server should use default scopes. The "scope" query string parameter of the Authorize request. May be absent if the client does not require state to be included when returning to the RedirectUri. True if the "response_type" query string parameter is "code". See also, http://tools.ietf.org/html/rfc6749#section-4.1.1 True if the "response_type" query string parameter is "token". See also, http://tools.ietf.org/html/rfc6749#section-4.2.1 Data object representing the information contained in form encoded body of a Token endpoint request. Creates a new instance populated with values from the form encoded body parameters. Form encoded body parameters from a request. The form encoded body parameters of the Token endpoint request The "grant_type" parameter of the Token endpoint request. This parameter is required. The "client_id" parameter of the Token endpoint request. This parameter is optional. It might not be present if the request is authenticated in a different way, for example, by using basic authentication credentials. Data object available when the "grant_type" is "authorization_code". See also http://tools.ietf.org/html/rfc6749#section-4.1.3 Data object available when the "grant_type" is "client_credentials". See also http://tools.ietf.org/html/rfc6749#section-4.4.2 Data object available when the "grant_type" is "refresh_token". See also http://tools.ietf.org/html/rfc6749#section-6 Data object available when the "grant_type" is "password". See also http://tools.ietf.org/html/rfc6749#section-4.3.2 Data object available when the "grant_type" is unrecognized. See also http://tools.ietf.org/html/rfc6749#section-4.5 True when the "grant_type" is "authorization_code". See also http://tools.ietf.org/html/rfc6749#section-4.1.3 True when the "grant_type" is "client_credentials". See also http://tools.ietf.org/html/rfc6749#section-4.4.2 True when the "grant_type" is "refresh_token". See also http://tools.ietf.org/html/rfc6749#section-6 True when the "grant_type" is "password". See also http://tools.ietf.org/html/rfc6749#section-4.3.2 True when the "grant_type" is unrecognized. See also http://tools.ietf.org/html/rfc6749#section-4.5 Data object used by TokenEndpointRequest when the "grant_type" is "client_credentials". The value passed to the Token endpoint in the "scope" parameter Data object used by TokenEndpointRequest when the "grant_type" is "password". The value passed to the Token endpoint in the "username" parameter The value passed to the Token endpoint in the "password" parameter The value passed to the Token endpoint in the "scope" parameter Extension methods to add Authorization Server capabilities to an OWIN pipeline Adds OAuth2 Authorization Server capabilities to an OWIN web application. This middleware performs the request processing for the Authorize and Token endpoints defined by the OAuth2 specification. See also http://tools.ietf.org/html/rfc6749 The web application builder Options which control the behavior of the Authorization Server. The application builder Options class provides information needed to control Authorization Server middleware behavior Creates an instance of authorization server options with default values. The request path where client applications will redirect the user-agent in order to obtain user consent to issue a token. Must begin with a leading slash, like "/Authorize". The request path client applications communicate with directly as part of the OAuth protocol. Must begin with a leading slash, like "/Token". If the client is issued a client_secret, it must be provided to this endpoint. The object provided by the application to process events raised by the Authorization Server middleware. The application may implement the interface fully, or it may create an instance of OAuthAuthorizationServerProvider and assign delegates only to the events it wants to process. The data format used to protect and unprotect the information contained in the authorization code. If not provided by the application the default data protection provider depends on the host server. The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted servers will use DPAPI data protection. The data format used to protect the information contained in the access token. If not provided by the application the default data protection provider depends on the host server. The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted servers will use DPAPI data protection. If a different access token provider or format is assigned, a compatible instance must be assigned to the OAuthBearerAuthenticationOptions.AccessTokenProvider or OAuthBearerAuthenticationOptions.AccessTokenFormat property of the resource server. The data format used to protect and unprotect the information contained in the refresh token. If not provided by the application the default data protection provider depends on the host server. The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted servers will use DPAPI data protection. The period of time the authorization code remains valid after being issued. The default is five minutes. This time span must also take into account clock synchronization between servers in a web farm, so a very brief value could result in unexpectedly expired tokens. The period of time the access token remains valid after being issued. The default is twenty minutes. The client application is expected to refresh or acquire a new access token after the token has expired. Produces a single-use authorization code to return to the client application. For the OAuth server to be secure the application MUST provide an instance for AuthorizationCodeProvider where the token produced by the OnCreate or OnCreateAsync event is considered valid for only one call to OnReceive or OnReceiveAsync. Produces a bearer token the client application will typically be providing to resource server as the authorization bearer http request header. If not provided the token produced on the server's default data protection. If a different access token provider or format is assigned, a compatible instance must be assigned to the OAuthBearerAuthenticationOptions.AccessTokenProvider or OAuthBearerAuthenticationOptions.AccessTokenFormat property of the resource server. Produces a refresh token which may be used to produce a new access token when needed. If not provided the authorization server will not return refresh tokens from the /Token endpoint. Set to true if the web application is able to render error messages on the /Authorize endpoint. This is only needed for cases where the browser is not redirected back to the client application, for example, when the client_id or redirect_uri are incorrect. The /Authorize endpoint should expect to see "oauth.Error", "oauth.ErrorDescription", "oauth.ErrorUri" properties added to the owin environment. Used to know what the current clock time is when calculating or validating token expiration. When not assigned default is based on DateTimeOffset.UtcNow. This is typically needed only for unit testing. True to allow authorize and token requests to arrive on http URI addresses, and to allow incoming redirect_uri authorize request parameter to have http URI addresses. Endpoint responsible for Form Post Response Mode See also, http://openid.net/specs/oauth-v2-form-post-response-mode-1_0.html Authorization Server middleware component which is added to an OWIN pipeline. This class is not created by application code directly, instead it is added by calling the the IAppBuilder UseOAuthAuthorizationServer extension method. Authorization Server middleware component which is added to an OWIN pipeline. This constructor is not called by application code directly, instead it is added by calling the the IAppBuilder UseOAuthAuthorizationServer extension method. Called by the AuthenticationMiddleware base class to create a per-request handler. A new instance of the request handler Extension methods to add OAuth Bearer authentication capabilities to an OWIN application pipeline Adds Bearer token processing to an OWIN application pipeline. This middleware understands appropriately formatted and secured tokens which appear in the request header. If the Options.AuthenticationMode is Active, the claims within the bearer token are added to the current request's IPrincipal User. If the Options.AuthenticationMode is Passive, then the current request is not modified, but IAuthenticationManager AuthenticateAsync may be used at any time to obtain the claims from the request's bearer token. See also http://tools.ietf.org/html/rfc6749 The web application builder Options which control the processing of the bearer header. The application builder Bearer authentication middleware component which is added to an OWIN pipeline. This class is not created by application code directly, instead it is added by calling the the IAppBuilder UseOAuthBearerAuthentication extension method. Bearer authentication component which is added to an OWIN pipeline. This constructor is not called by application code directly, instead it is added by calling the the IAppBuilder UseOAuthBearerAuthentication extension method. Called by the AuthenticationMiddleware base class to create a per-request handler. A new instance of the request handler Options class provides information needed to control Bearer Authentication middleware behavior Creates an instance of bearer authentication options with default values. Determines what realm value is included when the bearer middleware adds a response header to an unauthorized request. If not assigned, the response header does not have a realm. Specifies the full challenge to send to the client, and should start with "Bearer". If a challenge is provided then the Realm property is ignored. If no challenge is specified then one is created using "Bearer" and the value of the Realm property. The object provided by the application to process events raised by the bearer authentication middleware. The application may implement the interface fully, or it may create an instance of OAuthBearerAuthenticationProvider and assign delegates only to the events it wants to process. The data format used to un-protect the information contained in the access token. If not provided by the application the default data protection provider depends on the host server. The SystemWeb host on IIS will use ASP.NET machine key data protection, and HttpListener and other self-hosted servers will use DPAPI data protection. If a different access token provider or format is assigned, a compatible instance must be assigned to the OAuthAuthorizationServerOptions.AccessTokenProvider and OAuthAuthorizationServerOptions.AccessTokenFormat of the authorization server. Receives the bearer token the client application will be providing to web application. If not provided the token produced on the server's default data protection by using the AccessTokenFormat. If a different access token provider or format is assigned, a compatible instance must be assigned to the OAuthAuthorizationServerOptions.AccessTokenProvider and OAuthAuthorizationServerOptions.AccessTokenFormat of the authorization server. Used to know what the current clock time is when calculating or validating token expiration. When not assigned default is based on DateTimeOffset.UtcNow. This is typically needed only for unit testing. Default values used by authorization server and bearer authentication. Default value for AuthenticationType property in the OAuthBearerAuthenticationOptions and OAuthAuthorizationServerOptions. Provides context information used at the end of a token-endpoint-request. Initializes a new instance of the class Issues the token. Gets the identity of the resource owner. Dictionary containing the state of the authentication session. The issued Access-Token Gets information about the token endpoint request. Gets whether or not the token should be issued. Enables additional values to be appended to the token response. Base class used for certain event contexts Base class used for certain event contexts Initializes base class used for certain event contexts Marks this context as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling. True if the validation has taken effect. Marks this context as not validated by the application. IsValidated and HasError become false as a result of calling. Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling. Assigned to the Error property Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling. Assigned to the Error property Assigned to the ErrorDescription property Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling. Assigned to the Error property Assigned to the ErrorDescription property Assigned to the ErrorUri property True if application code has called any of the Validate methods on this context. True if application code has called any of the SetError methods on this context. The error argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error" parameter. The optional errorDescription argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error_description" parameter. The optional errorUri argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error_uri" parameter. Initializes base class used for certain event contexts The "client_id" parameter for the current request. The Authorization Server application is responsible for validating this value identifies a registered client. Base class used for certain event contexts Initializes base class used for certain event contexts Replaces the ticket information on this context and marks it as as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling. Assigned to the Ticket property True if the validation has taken effect. Alters the ticket information on this context and marks it as as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling. Assigned to the Ticket.Identity property True if the validation has taken effect. Contains the identity and properties for the application to authenticate. If the Validated method is invoked with an AuthenticationTicket or ClaimsIdentity argument, that new value is assigned to this property in addition to changing IsValidated to true. Provides context information when processing an Authorization Response Initializes a new instance of the class Gets the identity of the resource owner. Dictionary containing the state of the authentication session. Gets information about the authorize endpoint request. Enables additional values to be appended to the token response. The serialized Access-Token. Depending on the flow, it can be null. The created Authorization-Code. Depending on the flow, it can be null. An event raised after the Authorization Server has processed the request, but before it is passed on to the web application. Calling RequestCompleted will prevent the request from passing on to the web application. Creates an instance of this context Gets OAuth authorization request data. Interface for OAuthAuthorizationServerOptions.Provider property used by Authorization Server to communicate with the web application while processing requests. Called to determine if an incoming request is treated as an Authorize or Token endpoint. If Options.AuthorizeEndpointPath or Options.TokenEndpointPath are assigned values, then handling this event is optional and context.IsAuthorizeEndpoint and context.IsTokenEndpoint will already be true if the request path matches. The context of the event carries information in and results out. Task to enable asynchronous execution Called to validate that the context.ClientId is a registered "client_id", and that the context.RedirectUri a "redirect_uri" registered for that client. This only occurs when processing the Authorize endpoint. The application MUST implement this call, and it MUST validate both of those factors before calling context.Validated. If the context.Validated method is called with a given redirectUri parameter, then IsValidated will only become true if the incoming redirect URI matches the given redirect URI. If context.Validated is not called the request will not proceed further. The context of the event carries information in and results out. Task to enable asynchronous execution Called to validate that the origin of the request is a registered "client_id", and that the correct credentials for that client are present on the request. If the web application accepts Basic authentication credentials, context.TryGetBasicCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request header. If the web application accepts "client_id" and "client_secret" as form encoded POST parameters, context.TryGetFormCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request body. If context.Validated is not called the request will not proceed further. The context of the event carries information in and results out. Task to enable asynchronous execution Called for each request to the Authorize endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client redirect URI, should continue processing. An application may add any additional constraints. The context of the event carries information in and results out. Task to enable asynchronous execution Called for each request to the Token endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client credentials, should continue processing. An application may add any additional constraints. The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "authorization_code". This occurs after the Authorize endpoint as redirected the user-agent back to the client with a "code" parameter, and the client is exchanging that for an "access_token". The claims and properties associated with the authorization code are present in the context.Ticket. The application must call context.Validated to instruct the Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from authorization code to access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the authorization code to the access token unmodified. See also http://tools.ietf.org/html/rfc6749#section-4.1.3 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "refresh_token". This occurs if your application has issued a "refresh_token" along with the "access_token", and the client is attempting to use the "refresh_token" to acquire a new "access_token", and possibly a new "refresh_token". To issue a refresh token the an Options.RefreshTokenProvider must be assigned to create the value which is returned. The claims and properties associated with the refresh token are present in the context.Ticket. The application must call context.Validated to instruct the Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from the refresh token to the access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the refresh token to the access token unmodified. See also http://tools.ietf.org/html/rfc6749#section-6 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "password". This occurs when the user has provided name and password credentials directly into the client application's user interface, and the client application is using those to acquire an "access_token" and optional "refresh_token". If the web application supports the resource owner credentials grant type it must validate the context.Username and context.Password as appropriate. To issue an access token the context.Validated must be called with a new ticket containing the claims about the resource owner which should be associated with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. . The default behavior is to reject this grant type. See also http://tools.ietf.org/html/rfc6749#section-4.3.2 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "client_credentials". This occurs when a registered client application wishes to acquire an "access_token" to interact with protected resources on it's own behalf, rather than on behalf of an authenticated user. If the web application supports the client credentials it may assume the context.ClientId has been validated by the ValidateClientAuthentication call. To issue an access token the context.Validated must be called with a new ticket containing the claims about the client application which should be associated with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. The default behavior is to reject this grant type. See also http://tools.ietf.org/html/rfc6749#section-4.4.2 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token andpoint arrives with a "grant_type" of any other value. If the application supports custom grant types it is entirely responsible for determining if the request should result in an access_token. If context.Validated is called with ticket information the response body is produced in the same way as the other standard grant types. If additional response parameters must be included they may be added in the final TokenEndpoint call. See also http://tools.ietf.org/html/rfc6749#section-4.5 The context of the event carries information in and results out. Task to enable asynchronous execution Called at the final stage of an incoming Authorize endpoint request before the execution continues on to the web application component responsible for producing the html response. Anything present in the OWIN pipeline following the Authorization Server may produce the response for the Authorize page. If running on IIS any ASP.NET technology running on the server may produce the response for the Authorize page. If the web application wishes to produce the response directly in the AuthorizeEndpoint call it may write to the context.Response directly and should call context.RequestCompleted to stop other handlers from executing. If the web application wishes to grant the authorization directly in the AuthorizeEndpoint call it cay call context.OwinContext.Authentication.SignIn with the appropriate ClaimsIdentity and should call context.RequestCompleted to stop other handlers from executing. The context of the event carries information in and results out. Task to enable asynchronous execution Called at the final stage of a successful Token endpoint request. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the Token endpoint's json response body. The context of the event carries information in and results out. Task to enable asynchronous execution Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the authorization endpoint's response. The context of the event carries information in and results out. Task to enable asynchronous execution Called before the TokenEndpoint redirects its response to the caller. Default implementation of IOAuthAuthorizationServerProvider used by Authorization Server to communicate with the web application while processing requests. OAuthAuthorizationServerProvider provides some default behavior, may be used as a virtual base class, and offers delegate properties which may be used to handle individual calls without declaring a new class type. Creates new instance of default provider behavior Called to determine if an incoming request is treated as an Authorize or Token endpoint. If Options.AuthorizeEndpointPath or Options.TokenEndpointPath are assigned values, then handling this event is optional and context.IsAuthorizeEndpoint and context.IsTokenEndpoint will already be true if the request path matches. The context of the event carries information in and results out. Task to enable asynchronous execution Called to validate that the context.ClientId is a registered "client_id", and that the context.RedirectUri a "redirect_uri" registered for that client. This only occurs when processing the Authorize endpoint. The application MUST implement this call, and it MUST validate both of those factors before calling context.Validated. If the context.Validated method is called with a given redirectUri parameter, then IsValidated will only become true if the incoming redirect URI matches the given redirect URI. If context.Validated is not called the request will not proceed further. The context of the event carries information in and results out. Task to enable asynchronous execution Called to validate that the origin of the request is a registered "client_id", and that the correct credentials for that client are present on the request. If the web application accepts Basic authentication credentials, context.TryGetBasicCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request header. If the web application accepts "client_id" and "client_secret" as form encoded POST parameters, context.TryGetFormCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request body. If context.Validated is not called the request will not proceed further. The context of the event carries information in and results out. Task to enable asynchronous execution Called for each request to the Authorize endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client redirect URI, should continue processing. An application may add any additional constraints. The context of the event carries information in and results out. Task to enable asynchronous execution Called for each request to the Token endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client credentials, should continue processing. An application may add any additional constraints. The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "authorization_code". This occurs after the Authorize endpoint as redirected the user-agent back to the client with a "code" parameter, and the client is exchanging that for an "access_token". The claims and properties associated with the authorization code are present in the context.Ticket. The application must call context.Validated to instruct the Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from authorization code to access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the authorization code to the access token unmodified. See also http://tools.ietf.org/html/rfc6749#section-4.1.3 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "refresh_token". This occurs if your application has issued a "refresh_token" along with the "access_token", and the client is attempting to use the "refresh_token" to acquire a new "access_token", and possibly a new "refresh_token". To issue a refresh token the an Options.RefreshTokenProvider must be assigned to create the value which is returned. The claims and properties associated with the refresh token are present in the context.Ticket. The application must call context.Validated to instruct the Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from the refresh token to the access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the refresh token to the access token unmodified. See also http://tools.ietf.org/html/rfc6749#section-6 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "password". This occurs when the user has provided name and password credentials directly into the client application's user interface, and the client application is using those to acquire an "access_token" and optional "refresh_token". If the web application supports the resource owner credentials grant type it must validate the context.Username and context.Password as appropriate. To issue an access token the context.Validated must be called with a new ticket containing the claims about the resource owner which should be associated with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. The default behavior is to reject this grant type. See also http://tools.ietf.org/html/rfc6749#section-4.3.2 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of "client_credentials". This occurs when a registered client application wishes to acquire an "access_token" to interact with protected resources on it's own behalf, rather than on behalf of an authenticated user. If the web application supports the client credentials it may assume the context.ClientId has been validated by the ValidateClientAuthentication call. To issue an access token the context.Validated must be called with a new ticket containing the claims about the client application which should be associated with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. The default behavior is to reject this grant type. See also http://tools.ietf.org/html/rfc6749#section-4.4.2 The context of the event carries information in and results out. Task to enable asynchronous execution Called when a request to the Token endpoint arrives with a "grant_type" of any other value. If the application supports custom grant types it is entirely responsible for determining if the request should result in an access_token. If context.Validated is called with ticket information the response body is produced in the same way as the other standard grant types. If additional response parameters must be included they may be added in the final TokenEndpoint call. See also http://tools.ietf.org/html/rfc6749#section-4.5 The context of the event carries information in and results out. Task to enable asynchronous execution Called at the final stage of an incoming Authorize endpoint request before the execution continues on to the web application component responsible for producing the html response. Anything present in the OWIN pipeline following the Authorization Server may produce the response for the Authorize page. If running on IIS any ASP.NET technology running on the server may produce the response for the Authorize page. If the web application wishes to produce the response directly in the AuthorizeEndpoint call it may write to the context.Response directly and should call context.RequestCompleted to stop other handlers from executing. If the web application wishes to grant the authorization directly in the AuthorizeEndpoint call it cay call context.OwinContext.Authentication.SignIn with the appropriate ClaimsIdentity and should call context.RequestCompleted to stop other handlers from executing. The context of the event carries information in and results out. Task to enable asynchronous execution Called at the final stage of a successful Token endpoint request. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the Token endpoint's json response body. The context of the event carries information in and results out. Task to enable asynchronous execution Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the authorization endpoint's response. The context of the event carries information in and results out. Task to enable asynchronous execution Called before the TokenEndpoint redirects its response to the caller. Called to determine if an incoming request is treated as an Authorize or Token endpoint. If Options.AuthorizeEndpointPath or Options.TokenEndpointPath are assigned values, then handling this event is optional and context.IsAuthorizeEndpoint and context.IsTokenEndpoint will already be true if the request path matches. Called to validate that the context.ClientId is a registered "client_id", and that the context.RedirectUri a "redirect_uri" registered for that client. This only occurs when processing the Authorize endpoint. The application MUST implement this call, and it MUST validate both of those factors before calling context.Validated. If the context.Validated method is called with a given redirectUri parameter, then IsValidated will only become true if the incoming redirect URI matches the given redirect URI. If context.Validated is not called the request will not proceed further. Called to validate that the origin of the request is a registered "client_id", and that the correct credentials for that client are present on the request. If the web application accepts Basic authentication credentials, context.TryGetBasicCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request header. If the web application accepts "client_id" and "client_secret" as form encoded POST parameters, context.TryGetFormCredentials(out clientId, out clientSecret) may be called to acquire those values if present in the request body. If context.Validated is not called the request will not proceed further. Called for each request to the Authorize endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client redirect URI, should continue processing. An application may add any additional constraints. Called for each request to the Token endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client credentials, should continue processing. An application may add any additional constraints. Called when a request to the Token endpoint arrives with a "grant_type" of "authorization_code". This occurs after the Authorize endpoint as redirected the user-agent back to the client with a "code" parameter, and the client is exchanging that for an "access_token". The claims and properties associated with the authorization code are present in the context.Ticket. The application must call context.Validated to instruct the Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from authorization code to access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the authorization code to the access token unmodified. See also http://tools.ietf.org/html/rfc6749#section-4.1.3 Called when a request to the Token endpoint arrives with a "grant_type" of "password". This occurs when the user has provided name and password credentials directly into the client application's user interface, and the client application is using those to acquire an "access_token" and optional "refresh_token". If the web application supports the resource owner credentials grant type it must validate the context.Username and context.Password as appropriate. To issue an access token the context.Validated must be called with a new ticket containing the claims about the resource owner which should be associated with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. The default behavior is to reject this grant type. See also http://tools.ietf.org/html/rfc6749#section-4.3.2 Called when a request to the Token endpoint arrives with a "grant_type" of "client_credentials". This occurs when a registered client application wishes to acquire an "access_token" to interact with protected resources on it's own behalf, rather than on behalf of an authenticated user. If the web application supports the client credentials it may assume the context.ClientId has been validated by the ValidateClientAuthentication call. To issue an access token the context.Validated must be called with a new ticket containing the claims about the client application which should be associated with the access token. The application should take appropriate measures to ensure that the endpoint isn’t abused by malicious callers. The default behavior is to reject this grant type. See also http://tools.ietf.org/html/rfc6749#section-4.4.2 Called when a request to the Token endpoint arrives with a "grant_type" of "refresh_token". This occurs if your application has issued a "refresh_token" along with the "access_token", and the client is attempting to use the "refresh_token" to acquire a new "access_token", and possibly a new "refresh_token". To issue a refresh token the an Options.RefreshTokenProvider must be assigned to create the value which is returned. The claims and properties associated with the refresh token are present in the context.Ticket. The application must call context.Validated to instruct the Authorization Server middleware to issue an access token based on those claims and properties. The call to context.Validated may be given a different AuthenticationTicket or ClaimsIdentity in order to control which information flows from the refresh token to the access token. The default behavior when using the OAuthAuthorizationServerProvider is to flow information from the refresh token to the access token unmodified. See also http://tools.ietf.org/html/rfc6749#section-6 Called when a request to the Token andpoint arrives with a "grant_type" of any other value. If the application supports custom grant types it is entirely responsible for determining if the request should result in an access_token. If context.Validated is called with ticket information the response body is produced in the same way as the other standard grant types. If additional response parameters must be included they may be added in the final TokenEndpoint call. See also http://tools.ietf.org/html/rfc6749#section-4.5 Called at the final stage of an incoming Authorize endpoint request before the execution continues on to the web application component responsible for producing the html response. Anything present in the OWIN pipeline following the Authorization Server may produce the response for the Authorize page. If running on IIS any ASP.NET technology running on the server may produce the response for the Authorize page. If the web application wishes to produce the response directly in the AuthorizeEndpoint call it may write to the context.Response directly and should call context.RequestCompleted to stop other handlers from executing. If the web application wishes to grant the authorization directly in the AuthorizeEndpoint call it cay call context.OwinContext.Authentication.SignIn with the appropriate ClaimsIdentity and should call context.RequestCompleted to stop other handlers from executing. Called at the final stage of a successful Token endpoint request. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the Token endpoint's json response body. Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the authorization endpoint's response. The context of the event carries information in and results out. Task to enable asynchronous execution Called before the TokenEndpoint redirects its response to the caller. OAuth bearer token middleware provider Specifies callback methods which the invokes to enable developer control over the authentication process. /> Invoked before the is created. Gives the application an opportunity to find the identity from a different location, adjust, or reject the token. Contains the token string. A representing the completed operation. Called each time a request identity has been validated by the middleware. By implementing this method the application may alter or reject the identity which has arrived with the request. Contains information about the login session as well as the user . A representing the completed operation. Called each time a challenge is being sent to the client. By implementing this method the application may modify the challenge as needed. Contains the default challenge. A representing the completed operation. Initializes a new instance of the class Handles processing OAuth bearer token. Handles validating the identity produced from an OAuth bearer token. Handles applying the authentication challenge to the response message. Handles processing OAuth bearer token. Handles validating the identity produced from an OAuth bearer token. Handles applying the authentication challenge to the response message. Specifies the HTTP response header for the bearer authentication scheme. Initializes a new OWIN environment The www-authenticate header value. The www-authenticate header value. Provides context information when handling an OAuth authorization code grant. Initializes a new instance of the class Provides context information used when granting an OAuth refresh token. Initializes a new instance of the class The OAuth client id. Specifies the HTTP request header for the bearer authentication scheme. Initializes a new OWIN environment The authorization header value. The authorization header value Contains information about the client credentials. Initializes a new instance of the class Sets the client id and marks the context as validated by the application. Extracts HTTP basic authentication credentials from the HTTP authenticate header. Extracts forms authentication credentials from the HTTP request body. Gets the set of form parameters from the request. Provides context information used when determining the OAuth flow type based on the request. Initializes a new instance of the class Sets the endpoint type to authorize endpoint. Sets the endpoint type to token endpoint. Sets the endpoint type to neither authorize nor token. Gets whether or not the endpoint is an OAuth authorize endpoint. Gets whether or not the endpoint is an OAuth token endpoint. Provides context information used when processing an OAuth token request. Initializes a new instance of the class Issues the token. Gets the identity of the resource owner. Dictionary containing the state of the authentication session. Gets information about the token endpoint request. Gets whether or not the token should be issued. Enables additional values to be appended to the token response. Provides context information used in handling an OAuth client credentials grant. Initializes a new instance of the class OAuth client id. List of scopes allowed by the resource owner. Provides context information used when handling OAuth extension grant types. Initializes a new instance of the class Gets the OAuth client id. Gets the name of the OAuth extension grant type. Gets a list of additional parameters from the token request. Provides context information used in validating an OAuth authorization request. Initializes a new instance of the class Gets OAuth authorization request data. Gets data about the OAuth client. Contains data about the OAuth client redirect URI Initializes a new instance of the class Marks this context as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling. Checks the redirect URI to determine whether it equals . Gets the client redirect URI Contains the authentication ticket data from an OAuth bearer token. Initializes a new instance of the class Provides context information used in handling an OAuth resource owner grant. Initializes a new instance of the class OAuth client id. Resource owner username. Resource owner password. List of scopes allowed by the resource owner. Provides context information used in validating an OAuth token request. Initializes a new instance of the class Gets the token request data. Gets information about the client. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a binary value to and from a base 64 string value. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Instructs the to use the specified constructor when deserializing that object. Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Represents a trace writer that writes to the application's instances. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Provides a set of static (Shared in Visual Basic) methods for querying objects that implement . Returns the input typed as . Returns an empty that has the specified type argument. Converts the elements of an to the specified type. Filters the elements of an based on a specified type. Generates a sequence of integral numbers within a specified range. The value of the first integer in the sequence. The number of sequential integers to generate. Generates a sequence that contains one repeated value. Filters a sequence of values based on a predicate. Filters a sequence of values based on a predicate. Each element's index is used in the logic of the predicate function. Projects each element of a sequence into a new form. Projects each element of a sequence into a new form by incorporating the element's index. Projects each element of a sequence to an and flattens the resulting sequences into one sequence. Projects each element of a sequence to an , and flattens the resulting sequences into one sequence. The index of each source element is used in the projected form of that element. Projects each element of a sequence to an , flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. Projects each element of a sequence to an , flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein. The index of each source element is used in the intermediate projected form of that element. Returns elements from a sequence as long as a specified condition is true. Returns elements from a sequence as long as a specified condition is true. The element's index is used in the logic of the predicate function. Base implementation of First operator. Returns the first element of a sequence. Returns the first element in a sequence that satisfies a specified condition. Returns the first element of a sequence, or a default value if the sequence contains no elements. Returns the first element of the sequence that satisfies a condition or a default value if no such element is found. Base implementation of Last operator. Returns the last element of a sequence. Returns the last element of a sequence that satisfies a specified condition. Returns the last element of a sequence, or a default value if the sequence contains no elements. Returns the last element of a sequence that satisfies a condition or a default value if no such element is found. Base implementation of Single operator. Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists. Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence. Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition. Returns the element at a specified index in a sequence. Returns the element at a specified index in a sequence or a default value if the index is out of range. Inverts the order of the elements in a sequence. Returns a specified number of contiguous elements from the start of a sequence. Bypasses a specified number of elements in a sequence and then returns the remaining elements. Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function. Returns the number of elements in a sequence. Returns a number that represents how many elements in the specified sequence satisfy a condition. Returns an that represents the total number of elements in a sequence. Returns an that represents how many elements in a sequence satisfy a condition. Concatenates two sequences. Creates a from an . Creates an array from an . Returns distinct elements from a sequence by using the default equality comparer to compare values. Returns distinct elements from a sequence by using a specified to compare values. Creates a from an according to a specified key selector function. Creates a from an according to a specified key selector function and a key comparer. Creates a from an according to specified key and element selector functions. Creates a from an according to a specified key selector function, a comparer and an element selector function. Groups the elements of a sequence according to a specified key selector function. Groups the elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer. Groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function. Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Groups the elements of a sequence according to a key selector function. The keys are compared by using a comparer and each group's elements are projected by using a specified function. Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The elements of each group are projected by using a specified function. Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The keys are compared by using a specified comparer. Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Key values are compared by using a specified comparer, and the elements of each group are projected by using a specified function. Applies an accumulator function over a sequence. Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value. Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value. Produces the set union of two sequences by using the default equality comparer. Produces the set union of two sequences by using a specified . Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty. Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty. Determines whether all elements of a sequence satisfy a condition. Determines whether a sequence contains any elements. Determines whether any element of a sequence satisfies a condition. Determines whether a sequence contains a specified element by using the default equality comparer. Determines whether a sequence contains a specified element by using a specified . Determines whether two sequences are equal by comparing the elements by using the default equality comparer for their type. Determines whether two sequences are equal by comparing their elements by using a specified . Base implementation for Min/Max operator. Base implementation for Min/Max operator for nullable types. Returns the minimum value in a generic sequence. Invokes a transform function on each element of a generic sequence and returns the minimum resulting value. Returns the maximum value in a generic sequence. Invokes a transform function on each element of a generic sequence and returns the maximum resulting value. Makes an enumerator seen as enumerable once more. The supplied enumerator must have been started. The first element returned is the element the enumerator was on when passed in. DO NOT use this method if the caller must be a generator. It is mostly safe among aggregate operations. Sorts the elements of a sequence in ascending order according to a key. Sorts the elements of a sequence in ascending order by using a specified comparer. Sorts the elements of a sequence in descending order according to a key. Sorts the elements of a sequence in descending order by using a specified comparer. Performs a subsequent ordering of the elements in a sequence in ascending order according to a key. Performs a subsequent ordering of the elements in a sequence in ascending order by using a specified comparer. Performs a subsequent ordering of the elements in a sequence in descending order, according to a key. Performs a subsequent ordering of the elements in a sequence in descending order by using a specified comparer. Base implementation for Intersect and Except operators. Produces the set intersection of two sequences by using the default equality comparer to compare values. Produces the set intersection of two sequences by using the specified to compare values. Produces the set difference of two sequences by using the default equality comparer to compare values. Produces the set difference of two sequences by using the specified to compare values. Creates a from an according to a specified key selector function. Creates a from an according to a specified key selector function and key comparer. Creates a from an according to specified key selector and element selector functions. Creates a from an according to a specified key selector function, a comparer, and an element selector function. Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys. Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys. A specified is used to compare keys. Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys. Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys. A specified is used to compare keys. Computes the sum of a sequence of nullable values. Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of nullable values. Computes the average of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the sum of a sequence of values. Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of values. Computes the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Returns the minimum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the minimum nullable value. Returns the maximum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the maximum nullable value. Computes the sum of a sequence of nullable values. Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of nullable values. Computes the average of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the sum of a sequence of values. Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of values. Computes the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Returns the minimum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the minimum nullable value. Returns the maximum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the maximum nullable value. Computes the sum of a sequence of nullable values. Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of nullable values. Computes the average of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the sum of a sequence of values. Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of values. Computes the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Returns the minimum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the minimum nullable value. Returns the maximum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the maximum nullable value. Computes the sum of a sequence of nullable values. Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of nullable values. Computes the average of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the sum of a sequence of values. Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of values. Computes the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Returns the minimum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the minimum nullable value. Returns the maximum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the maximum nullable value. Computes the sum of a sequence of nullable values. Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of nullable values. Computes the average of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. Computes the sum of a sequence of values. Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Computes the average of a sequence of values. Computes the average of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. Returns the minimum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the minimum nullable value. Returns the maximum value in a sequence of nullable values. Invokes a transform function on each element of a sequence and returns the maximum nullable value. Represents a collection of objects that have a common key. Gets the key of the . Defines an indexer, size property, and Boolean search method for data structures that map keys to sequences of values. Represents a sorted sequence. Performs a subsequent ordering on the elements of an according to a key. Represents a collection of keys each mapped to one or more values. Determines whether a specified key is in the . Applies a transform function to each key and its associated values and returns the results. Returns a generic enumerator that iterates through the . Gets the number of key/value collection pairs in the . Gets the collection of values indexed by the specified key. See issue #11 for why this method is needed and cannot be expressed as a lambda at the call site. See issue #11 for why this method is needed and cannot be expressed as a lambda at the call site. This attribute allows us to define extension methods without requiring .NET Framework 3.5. For more information, see the section, Extension Methods in .NET Framework 2.0 Apps, of Basic Instincts: Extension Methods column in MSDN Magazine, issue Nov 2007. Represents a view of a . Initializes a new instance of the class. The name. When overridden in a derived class, returns whether resetting an object changes its value. true if resetting the component changes its value; otherwise, false. The component to test for reset capability. When overridden in a derived class, gets the current value of the property on a component. The value of a property for a given component. The component with the property for which to retrieve the value. When overridden in a derived class, resets the value for this property of the component to the default value. The component with the property value that is to be reset to the default value. When overridden in a derived class, sets the value of the component to a different value. The component with the property value that is to be set. The new value. When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. true if the property should be persisted; otherwise, false. The component with the property to be examined for persistence. When overridden in a derived class, gets the type of the component this property is bound to. A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. When overridden in a derived class, gets a value indicating whether this property is read-only. true if the property is read-only; otherwise, false. When overridden in a derived class, gets the type of the property. A that represents the type of the property. Gets the hash code for the name of the member. The hash code for the name of the member. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Represents an abstract JSON token. Represents a collection of objects. The type of token Gets the with the specified key. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts XML to and from JSON. Writes the JSON representation of the object. The to write to. The calling serializer. The value. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Checks if the attributeName is a namespace attribute. Attribute name to test. The attribute name prefix if it has one, otherwise an empty string. True if attribute name is for a namespace attribute, otherwise false. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. The name of the deserialize root element. Gets or sets a flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. true if the array attibute is written to the XML; otherwise, false. Gets or sets a value indicating whether to write the root JSON object. true if the JSON root object is omitted; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Instructs the not to serialize the public field or public read/write property value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Represents a collection of . Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Serializes the XML node to a JSON string. The node to serialize. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting. The node to serialize. Indicates how the output is formatted. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XmlNode. Deserializes the XmlNode from a JSON string. The JSON string. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XmlNode Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a JSON constructor. Represents a token that can contain other tokens. Raises the event. The instance containing the event data. Raises the event. The instance containing the event data. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Occurs when the list changes or an item in the list changes. Occurs before an item is added to the collection. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Returns the properties for this instance of a component. A that represents the properties for this component instance. Returns the properties for this instance of a component using the attribute array as a filter. An array of type that is used as a filter. A that represents the filtered properties for this component instance. Returns a collection of custom attributes for this instance of a component. An containing the attributes for this object. Returns the class name of this instance of a component. The class name of the object, or null if the class does not have a name. Returns the name of this instance of a component. The name of the object, or null if the object does not have a name. Returns a type converter for this instance of a component. A that is the converter for this object, or null if there is no for this object. Returns the default event for this instance of a component. An that represents the default event for this object, or null if this object does not have events. Returns the default property for this instance of a component. A that represents the default property for this object, or null if this object does not have properties. Returns an editor of the specified type for this instance of a component. A that represents the editor for this object. An of the specified type that is the editor for this object, or null if the editor cannot be found. Returns the events for this instance of a component using the specified attribute array as a filter. An array of type that is used as a filter. An that represents the filtered events for this component instance. Returns the events for this instance of a component. An that represents the events for this component instance. Returns an object that contains the property described by the specified property descriptor. A that represents the property whose owner is to be found. An that represents the owner of the specified property. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Represents a JSON array. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets the default members search flags. The default members search flags. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. true if the interface will be ignored when serializing and deserializing types; otherwise, false. Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. true if the attribute will be ignored when serializing and deserializing types; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. Get and set values for a using dynamic methods. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the ISerializable object constructor. The ISerializable object constructor. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Represents a method that constructs an object. The object type to create. When applied to a method, specifies that the method is called when an error occurs serializing an object. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Converts a binary value to and from a base 64 string value. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an Entity Framework EntityKey to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Instructs the to use the specified constructor when deserializing that object. Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Represents a view of a . Initializes a new instance of the class. The name. When overridden in a derived class, returns whether resetting an object changes its value. true if resetting the component changes its value; otherwise, false. The component to test for reset capability. When overridden in a derived class, gets the current value of the property on a component. The value of a property for a given component. The component with the property for which to retrieve the value. When overridden in a derived class, resets the value for this property of the component to the default value. The component with the property value that is to be reset to the default value. When overridden in a derived class, sets the value of the component to a different value. The component with the property value that is to be set. The new value. When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. true if the property should be persisted; otherwise, false. The component with the property to be examined for persistence. When overridden in a derived class, gets the type of the component this property is bound to. A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. When overridden in a derived class, gets a value indicating whether this property is read-only. true if the property is read-only; otherwise, false. When overridden in a derived class, gets the type of the property. A that represents the type of the property. Gets the hash code for the name of the member. The hash code for the name of the member. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Represents a trace writer that writes to the application's instances. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Represents an abstract JSON token. Represents a collection of objects. The type of token Gets the with the specified key. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the ISerializable object constructor. The ISerializable object constructor. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Get and set values for a using dynamic methods. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts XML to and from JSON. Writes the JSON representation of the object. The to write to. The calling serializer. The value. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Checks if the attributeName is a namespace attribute. Attribute name to test. The attribute name prefix if it has one, otherwise an empty string. True if attribute name is for a namespace attribute, otherwise false. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. The name of the deserialize root element. Gets or sets a flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. true if the array attibute is written to the XML; otherwise, false. Gets or sets a value indicating whether to write the root JSON object. true if the JSON root object is omitted; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Instructs the not to serialize the public field or public read/write property value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Represents a collection of . Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Serializes the XML node to a JSON string. The node to serialize. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting. The node to serialize. Indicates how the output is formatted. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XmlNode. Deserializes the XmlNode from a JSON string. The JSON string. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XmlNode Serializes the to a JSON string. The node to convert to JSON. A JSON string of the XNode. Serializes the to a JSON string using formatting. The node to convert to JSON. Indicates how the output is formatted. A JSON string of the XNode. Serializes the to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XNode. Deserializes the from a JSON string. The JSON string. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XNode Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a JSON constructor. Represents a token that can contain other tokens. Raises the event. The instance containing the event data. Raises the event. The instance containing the event data. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Occurs when the list changes or an item in the list changes. Occurs before an item is added to the collection. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Raises the event with the provided arguments. Name of the property. Returns the properties for this instance of a component. A that represents the properties for this component instance. Returns the properties for this instance of a component using the attribute array as a filter. An array of type that is used as a filter. A that represents the filtered properties for this component instance. Returns a collection of custom attributes for this instance of a component. An containing the attributes for this object. Returns the class name of this instance of a component. The class name of the object, or null if the class does not have a name. Returns the name of this instance of a component. The name of the object, or null if the object does not have a name. Returns a type converter for this instance of a component. A that is the converter for this object, or null if there is no for this object. Returns the default event for this instance of a component. An that represents the default event for this object, or null if this object does not have events. Returns the default property for this instance of a component. A that represents the default property for this object, or null if this object does not have properties. Returns an editor of the specified type for this instance of a component. A that represents the editor for this object. An of the specified type that is the editor for this object, or null if the editor cannot be found. Returns the events for this instance of a component using the specified attribute array as a filter. An array of type that is used as a filter. An that represents the filtered events for this component instance. Returns the events for this instance of a component. An that represents the events for this component instance. Returns an object that contains the property described by the specified property descriptor. A that represents the property whose owner is to be found. An that represents the owner of the specified property. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Occurs when a property value is changing. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Represents a JSON array. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets the default members search flags. The default members search flags. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. true if the interface will be ignored when serializing and deserializing types; otherwise, false. Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. true if the attribute will be ignored when serializing and deserializing types; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. When applied to a method, specifies that the method is called when an error occurs serializing an object. Represents a method that constructs an object. The object type to create. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Converts a binary value to and from a base 64 string value. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a F# discriminated union type to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an Entity Framework EntityKey to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an ExpandoObject to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Instructs the to use the specified constructor when deserializing that object. Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Represents a trace writer that writes to the application's instances. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Get and set values for a using dynamic methods. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Represents an abstract JSON token. Represents a collection of objects. The type of token Gets the with the specified key. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the object's properties. The object's properties. Gets or sets the property name resolver. The property name resolver. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the ISerializable object constructor. The ISerializable object constructor. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Get and set values for a using dynamic methods. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Represents a view of a . Initializes a new instance of the class. The name. When overridden in a derived class, returns whether resetting an object changes its value. true if resetting the component changes its value; otherwise, false. The component to test for reset capability. When overridden in a derived class, gets the current value of the property on a component. The value of a property for a given component. The component with the property for which to retrieve the value. When overridden in a derived class, resets the value for this property of the component to the default value. The component with the property value that is to be reset to the default value. When overridden in a derived class, sets the value of the component to a different value. The component with the property value that is to be set. The new value. When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. true if the property should be persisted; otherwise, false. The component with the property to be examined for persistence. When overridden in a derived class, gets the type of the component this property is bound to. A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. When overridden in a derived class, gets a value indicating whether this property is read-only. true if the property is read-only; otherwise, false. When overridden in a derived class, gets the type of the property. A that represents the type of the property. Gets the hash code for the name of the member. The hash code for the name of the member. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts XML to and from JSON. Writes the JSON representation of the object. The to write to. The calling serializer. The value. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Checks if the attributeName is a namespace attribute. Attribute name to test. The attribute name prefix if it has one, otherwise an empty string. True if attribute name is for a namespace attribute, otherwise false. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. The name of the deserialize root element. Gets or sets a flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. true if the array attibute is written to the XML; otherwise, false. Gets or sets a value indicating whether to write the root JSON object. true if the JSON root object is omitted; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Instructs the not to serialize the public field or public read/write property value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Represents a collection of . Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Asynchronously serializes the specified object to a JSON string. Serialization will happen on a new thread. The object to serialize. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting. Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting and a collection of . Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Asynchronously populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous populate operation. Serializes the XML node to a JSON string. The node to serialize. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting. The node to serialize. Indicates how the output is formatted. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XmlNode. Deserializes the XmlNode from a JSON string. The JSON string. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XmlNode Serializes the to a JSON string. The node to convert to JSON. A JSON string of the XNode. Serializes the to a JSON string using formatting. The node to convert to JSON. Indicates how the output is formatted. A JSON string of the XNode. Serializes the to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XNode. Deserializes the from a JSON string. The JSON string. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XNode Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a JSON constructor. Represents a token that can contain other tokens. Raises the event. The instance containing the event data. Raises the event. The instance containing the event data. Raises the event. The instance containing the event data. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Occurs when the list changes or an item in the list changes. Occurs before an item is added to the collection. Occurs when the items list of the collection has changed, or the collection is reset. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Raises the event with the provided arguments. Name of the property. Returns the properties for this instance of a component. A that represents the properties for this component instance. Returns the properties for this instance of a component using the attribute array as a filter. An array of type that is used as a filter. A that represents the filtered properties for this component instance. Returns a collection of custom attributes for this instance of a component. An containing the attributes for this object. Returns the class name of this instance of a component. The class name of the object, or null if the class does not have a name. Returns the name of this instance of a component. The name of the object, or null if the object does not have a name. Returns a type converter for this instance of a component. A that is the converter for this object, or null if there is no for this object. Returns the default event for this instance of a component. An that represents the default event for this object, or null if this object does not have events. Returns the default property for this instance of a component. A that represents the default property for this object, or null if this object does not have properties. Returns an editor of the specified type for this instance of a component. A that represents the editor for this object. An of the specified type that is the editor for this object, or null if the editor cannot be found. Returns the events for this instance of a component using the specified attribute array as a filter. An array of type that is used as a filter. An that represents the filtered events for this component instance. Returns the events for this instance of a component. An that represents the events for this component instance. Returns an object that contains the property described by the specified property descriptor. A that represents the property whose owner is to be found. An that represents the owner of the specified property. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Occurs when a property value is changing. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Represents a JSON array. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets the default members search flags. The default members search flags. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. true if the interface will be ignored when serializing and deserializing types; otherwise, false. Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. true if the attribute will be ignored when serializing and deserializing types; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. When applied to a method, specifies that the method is called when an error occurs serializing an object. Helper method for generating a MetaObject which calls a specific method on Dynamic that returns a result Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Returns a Restrictions object which includes our current restrictions merged with a restriction limiting our type Represents a method that constructs an object. The object type to create. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a binary value to and from a base 64 string value. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a F# discriminated union type to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an Entity Framework EntityKey to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an ExpandoObject to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts XML to and from JSON. Writes the JSON representation of the object. The to write to. The calling serializer. The value. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Checks if the attributeName is a namespace attribute. Attribute name to test. The attribute name prefix if it has one, otherwise an empty string. True if attribute name is for a namespace attribute, otherwise false. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. The name of the deserialize root element. Gets or sets a flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. true if the array attibute is written to the XML; otherwise, false. Gets or sets a value indicating whether to write the root JSON object. true if the JSON root object is omitted; otherwise, false. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Instructs the to use the specified constructor when deserializing that object. Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Asynchronously serializes the specified object to a JSON string. Serialization will happen on a new thread. The object to serialize. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting. Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting and a collection of . Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Asynchronously populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous populate operation. Serializes the XML node to a JSON string. The node to serialize. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting. The node to serialize. Indicates how the output is formatted. A JSON string of the XmlNode. Serializes the XML node to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XmlNode. Deserializes the XmlNode from a JSON string. The JSON string. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XmlNode Deserializes the XmlNode from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XmlNode Serializes the to a JSON string. The node to convert to JSON. A JSON string of the XNode. Serializes the to a JSON string using formatting. The node to convert to JSON. Indicates how the output is formatted. A JSON string of the XNode. Serializes the to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XNode. Deserializes the from a JSON string. The JSON string. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XNode Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Represents a collection of . Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Instructs the not to serialize the public field or public read/write property value. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a collection of objects. The type of token Gets the with the specified key. Represents a JSON array. Represents a token that can contain other tokens. Represents an abstract JSON token. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Raises the event. The instance containing the event data. Raises the event. The instance containing the event data. Raises the event. The instance containing the event data. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Occurs when the list changes or an item in the list changes. Occurs before an item is added to the collection. Occurs when the items list of the collection has changed, or the collection is reset. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a JSON constructor. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Raises the event with the provided arguments. Name of the property. Returns the properties for this instance of a component. A that represents the properties for this component instance. Returns the properties for this instance of a component using the attribute array as a filter. An array of type that is used as a filter. A that represents the filtered properties for this component instance. Returns a collection of custom attributes for this instance of a component. An containing the attributes for this object. Returns the class name of this instance of a component. The class name of the object, or null if the class does not have a name. Returns the name of this instance of a component. The name of the object, or null if the object does not have a name. Returns a type converter for this instance of a component. A that is the converter for this object, or null if there is no for this object. Returns the default event for this instance of a component. An that represents the default event for this object, or null if this object does not have events. Returns the default property for this instance of a component. A that represents the default property for this object, or null if this object does not have properties. Returns an editor of the specified type for this instance of a component. A that represents the editor for this object. An of the specified type that is the editor for this object, or null if the editor cannot be found. Returns the events for this instance of a component using the specified attribute array as a filter. An array of type that is used as a filter. An that represents the filtered events for this component instance. Returns the events for this instance of a component. An that represents the events for this component instance. Returns an object that contains the property described by the specified property descriptor. A that represents the property whose owner is to be found. An that represents the owner of the specified property. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Occurs when a property value is changing. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Represents a view of a . Initializes a new instance of the class. The name. When overridden in a derived class, returns whether resetting an object changes its value. true if resetting the component changes its value; otherwise, false. The component to test for reset capability. When overridden in a derived class, gets the current value of the property on a component. The value of a property for a given component. The component with the property for which to retrieve the value. When overridden in a derived class, resets the value for this property of the component to the default value. The component with the property value that is to be reset to the default value. When overridden in a derived class, sets the value of the component to a different value. The component with the property value that is to be set. The new value. When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. true if the property should be persisted; otherwise, false. The component with the property to be examined for persistence. When overridden in a derived class, gets the type of the component this property is bound to. A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. When overridden in a derived class, gets a value indicating whether this property is read-only. true if the property is read-only; otherwise, false. When overridden in a derived class, gets the type of the property. A that represents the type of the property. Gets the hash code for the name of the member. The hash code for the name of the member. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Initializes a new instance of the class. The that holds the serialized object data about the exception being thrown. The that contains contextual information about the source or destination. The parameter is null. The class name is null or is zero (0). Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets the default members search flags. The default members search flags. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. true if the interface will be ignored when serializing and deserializing types; otherwise, false. Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. true if the attribute will be ignored when serializing and deserializing types; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Represents a trace writer that writes to the application's instances. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Get and set values for a using dynamic methods. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Get and set values for a using dynamic methods. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Contract details for a used by the . Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the object's properties. The object's properties. Gets or sets the property name resolver. The property name resolver. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the ISerializable object constructor. The ISerializable object constructor. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Represents a method that constructs an object. The object type to create. When applied to a method, specifies that the method is called when an error occurs serializing an object. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Helper method for generating a MetaObject which calls a specific method on Dynamic that returns a result Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Returns a Restrictions object which includes our current restrictions merged with a restriction limiting our type Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a to and from JSON and BSON. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an ExpandoObject to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts XML to and from JSON. Writes the JSON representation of the object. The to write to. The calling serializer. The value. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Checks if the attributeName is a namespace attribute. Attribute name to test. The attribute name prefix if it has one, otherwise an empty string. True if attribute name is for a namespace attribute, otherwise false. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. The name of the deserialize root element. Gets or sets a flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. true if the array attibute is written to the XML; otherwise, false. Gets or sets a value indicating whether to write the root JSON object. true if the JSON root object is omitted; otherwise, false. Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Indicates the method that will be used during deserialization for locating and loading assemblies. 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. 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. Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Instructs the to use the specified constructor when deserializing that object. Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Asynchronously serializes the specified object to a JSON string. Serialization will happen on a new thread. The object to serialize. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting. Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting and a collection of . Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Asynchronously populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous populate operation. Serializes the to a JSON string. The node to convert to JSON. A JSON string of the XNode. Serializes the to a JSON string using formatting. The node to convert to JSON. Indicates how the output is formatted. A JSON string of the XNode. Serializes the to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XNode. Deserializes the from a JSON string. The JSON string. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XNode Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Represents a collection of . Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Instructs the not to serialize the public field or public read/write property value. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a collection of objects. The type of token Gets the with the specified key. Represents a JSON array. Represents a token that can contain other tokens. Represents an abstract JSON token. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Raises the event. The instance containing the event data. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Occurs when the items list of the collection has changed, or the collection is reset. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a JSON constructor. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Allows users to control class loading and mandate what class to load. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Get and set values for a using dynamic methods. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Contract details for a used by the . Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the object's properties. The object's properties. Gets or sets the property name resolver. The property name resolver. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Represents a method that constructs an object. The object type to create. When applied to a method, specifies that the method is called when an error occurs serializing an object. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Specifies what messages to output for the class. Output no tracing and debugging messages. Output error-handling messages. Output warnings and error-handling messages. Output informational messages, warnings, and error-handling messages. Output all debugging and tracing messages. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Helper method for generating a MetaObject which calls a specific method on Dynamic that returns a result Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Returns a Restrictions object which includes our current restrictions merged with a restriction limiting our type Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a to and from JSON and BSON. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a F# discriminated union type to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Indicates the method that will be used during deserialization for locating and loading assemblies. 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. 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. Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Instructs the to use the specified constructor when deserializing that object. Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Represents a collection of . Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Instructs the not to serialize the public field or public read/write property value. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a collection of objects. The type of token Gets the with the specified key. Represents a JSON array. Represents a token that can contain other tokens. Represents an abstract JSON token. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a JSON constructor. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Allows users to control class loading and mandate what class to load. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets the default members search flags. The default members search flags. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Contract details for a used by the . Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Represents a method that constructs an object. The object type to create. When applied to a method, specifies that the method is called when an error occurs serializing an object. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Specifies what messages to output for the class. Output no tracing and debugging messages. Output error-handling messages. Output warnings and error-handling messages. Output informational messages, warnings, and error-handling messages. Output all debugging and tracing messages. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml ================================================ Newtonsoft.Json Represents a BSON Oid (object id). Initializes a new instance of the class. The Oid value. Gets or sets the value of the Oid. The value of the Oid. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class with the specified . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Skips the children of the current token. Sets the current token. The new token. Sets the current token and value. The new token. The value. Sets the state based on current token type. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Releases unmanaged and - optionally - managed resources true to release both managed and unmanaged resources; false to release only unmanaged resources. Changes the to Closed. Gets the current reader state. The current reader state. Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. true to close the underlying stream or when the reader is closed; otherwise false. The default is true. Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. true to support reading multiple pieces of JSON content; otherwise false. The default is false. Gets the quotation mark character used to enclose the value of a string. Get or set how time zones are handling when reading JSON. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how custom date formatted strings are parsed when reading JSON. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets the type of the current JSON token. Gets the text value of the current JSON token. Gets The Common Language Runtime (CLR) type for the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets or sets the culture used when reading JSON. Defaults to . Specifies the state of the reader. The Read method has not been called. The end of the file has been reached successfully. Reader is at a property. Reader is at the start of an object. Reader is in an object. Reader is at the start of an array. Reader is in an array. The Close method has been called. Reader has just read a value. Reader is at the start of a constructor. Reader in a constructor. An error occurred that prevents the read operation from continuing. The end of the file has been reached successfully. Initializes a new instance of the class. The stream. Initializes a new instance of the class. The reader. Initializes a new instance of the class. The stream. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Initializes a new instance of the class. The reader. if set to true the root object will be read as a JSON array. The used when reading values from BSON. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Changes the to Closed. Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. Gets or sets a value indicating whether the root object will be read as a JSON array. true if the root object will be read as a JSON array; otherwise, false. Gets or sets the used when reading values from BSON. The used when reading values from BSON. Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the end of a Json object. Writes the beginning of a Json array. Writes the end of an array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end constructor. Writes the property name of a name/value pair on a JSON object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes the end of the current Json object or array. Writes the current token and its children. The to read the token from. Writes the current token. The to read the token from. A flag indicating whether the current token's children should be written. Writes the specified end token. The end token to write. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a null value. Writes an undefined value. Writes raw JSON without changing the writer's state. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Sets the state of the JsonWriter, The JsonToken being written. The value being written. Gets or sets a value indicating whether the underlying stream or should be closed when the writer is closed. true to close the underlying stream or when the writer is closed; otherwise false. The default is true. Gets the top. The top. Gets the state of the writer. Gets the path of the writer. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling when writing JSON text. Get or set how strings are escaped when writing JSON text. Get or set how special floating point numbers, e.g. , and , are written to JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when writing JSON. Defaults to . Initializes a new instance of the class. The stream. Initializes a new instance of the class. The writer. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Writes the end. The token. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes the start of a constructor with the given name. The name of the constructor. Writes raw JSON. The raw JSON to write. Writes raw JSON where a value is expected and updates the writer's state. The raw JSON to write. Writes the beginning of a Json array. Writes the beginning of a Json object. Writes the property name of a name/value pair on a Json object. The name of the property. Closes this stream and the underlying stream. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value that represents a BSON object id. The Object ID value to write. Writes a BSON regex. The regex pattern. The regex options. Gets or sets the used when writing values to BSON. When set to no conversion will occur. The used when writing values to BSON. Specifies how constructors are used when initializing objects during deserialization by the . First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. Json.NET will use a non-public default constructor before falling back to a paramatized constructor. Converts a to and from JSON and BSON. Converts an object to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets the of the JSON produced by the JsonConverter. The of the JSON produced by the JsonConverter. Gets a value indicating whether this can read JSON. true if this can read JSON; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Create a custom object The object type to convert. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Creates an object which will then be populated by the serializer. Type of the object. The created object. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Provides a base class for converting a to and from JSON. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a F# discriminated union type to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an ExpandoObject to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets a value indicating whether this can write JSON. true if this can write JSON; otherwise, false. Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Gets or sets the date time styles used when converting a date to and from JSON. The date time styles used when converting a date to and from JSON. Gets or sets the date time format used when converting a date to and from JSON. The date time format used when converting a date to and from JSON. Gets or sets the culture used when converting a date to and from JSON. The culture used when converting a date to and from JSON. Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Converts a to and from JSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts a to and from JSON and BSON. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts an to and from its name string value. Initializes a new instance of the class. Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Gets or sets a value indicating whether the written enum text should be camel case. true if the written enum text will be camel case; otherwise, false. Gets or sets a value indicating whether integer values are allowed. true if integers are allowed; otherwise, false. Converts a to and from a string (e.g. "1.2.3.4"). Writes the JSON representation of the object. The to write to. The value. The calling serializer. Reads the JSON representation of the object. The to read from. Type of the object. The existing property value of the JSON that is being converted. The calling serializer. The object value. Determines whether this instance can convert the specified object type. Type of the object. true if this instance can convert the specified object type; otherwise, false. Converts XML to and from JSON. Writes the JSON representation of the object. The to write to. The calling serializer. The value. Reads the JSON representation of the object. The to read from. Type of the object. The existing value of object being read. The calling serializer. The object value. Checks if the attributeName is a namespace attribute. Attribute name to test. The attribute name prefix if it has one, otherwise an empty string. True if attribute name is for a namespace attribute, otherwise false. Determines whether this instance can convert the specified value type. Type of the value. true if this instance can convert the specified value type; otherwise, false. Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. The name of the deserialize root element. Gets or sets a flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. true if the array attibute is written to the XML; otherwise, false. Gets or sets a value indicating whether to write the root JSON object. true if the JSON root object is omitted; otherwise, false. Specifies how dates are formatted when writing JSON text. Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. Date formatted strings are not parsed to a date type and are read as strings. Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . Specifies how to treat the time value when converting between string and . Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. Treat as a UTC. If the object represents a local time, it is converted to a UTC. Treat as a local time if a is being converted to a string. If a string is being converted to , convert to a local time if a time zone is specified. Time zone information should be preserved when converting. Specifies default value handling options for the . Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, decimals and floating point numbers; and false for booleans). The default value ignored can be changed by placing the on the property. Members with a default value but no JSON will be set to their default value when deserializing. Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. Specifies float format handling options when writing special floating point numbers, e.g. , and with . Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Floating point numbers are parsed to . Floating point numbers are parsed to . Indicates the method that will be used during deserialization for locating and loading assemblies. 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. 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. Specifies formatting options for the . No special formatting is applied. This is the default. Causes child objects to be indented according to the and settings. Provides an interface to enable a class to return line and position information. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Instructs the how to serialize the collection. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the id. The id. Gets or sets the title. The title. Gets or sets the description. The description. Gets the collection's items converter. The collection's items converter. Gets or sets a value that indicates whether to preserve object references. true to keep object reference; otherwise, false. The default is false. Gets or sets a value that indicates whether to preserve collection's items references. true to keep collection's items object references; otherwise, false. The default is false. Gets or sets the reference loop handling used when serializing the collection's items. The reference loop handling. Gets or sets the type name handling used when serializing the collection's items. The type name handling. Initializes a new instance of the class. Initializes a new instance of the class with a flag indicating whether the array can contain null items A flag indicating whether the array can contain null items. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets a value indicating whether null items are allowed in the collection. true if null items are allowed in the collection; otherwise, false. Instructs the to use the specified constructor when deserializing that object. Provides methods for converting between common language runtime types and JSON types. Represents JavaScript's boolean value true as a string. This field is read-only. Represents JavaScript's boolean value false as a string. This field is read-only. Represents JavaScript's null as a string. This field is read-only. Represents JavaScript's undefined as a string. This field is read-only. Represents JavaScript's positive infinity as a string. This field is read-only. Represents JavaScript's negative infinity as a string. This field is read-only. Represents JavaScript's NaN as a string. This field is read-only. Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. The time zone handling when the date is converted to a string. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation using the specified. The value to convert. The format the date will be converted to. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. The string delimiter character. A JSON string representation of the . Converts the to its JSON string representation. The value to convert. A JSON string representation of the . Serializes the specified object to a JSON string. The object to serialize. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting. The object to serialize. Indicates how the output is formatted. A JSON string representation of the object. Serializes the specified object to a JSON string using a collection of . The object to serialize. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and a collection of . The object to serialize. Indicates how the output is formatted. A collection converters used while serializing. A JSON string representation of the object. Serializes the specified object to a JSON string using . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Serializes the specified object to a JSON string using formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A JSON string representation of the object. Serializes the specified object to a JSON string using a type, formatting and . The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. A JSON string representation of the object. Asynchronously serializes the specified object to a JSON string. Serialization will happen on a new thread. The object to serialize. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting. Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Asynchronously serializes the specified object to a JSON string using formatting and a collection of . Serialization will happen on a new thread. The object to serialize. Indicates how the output is formatted. The used to serialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. Deserializes the JSON to a .NET object. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to a .NET object using . The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The JSON to deserialize. The of object being deserialized. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type. The type of the object to deserialize to. The JSON to deserialize. The deserialized object from the JSON string. Deserializes the JSON to the given anonymous type. The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The deserialized anonymous type from the JSON string. Deserializes the JSON to the given anonymous type using . The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. The JSON to deserialize. The anonymous type object. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized anonymous type from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The type of the object to deserialize to. The JSON to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The type of the object to deserialize to. The object to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using a collection of . The JSON to deserialize. The type of the object to deserialize. Converters to use while deserializing. The deserialized object from the JSON string. Deserializes the JSON to the specified .NET type using . The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. The deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The type of the object to deserialize to. The JSON to deserialize. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. The JSON to deserialize. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Asynchronously deserializes the JSON to the specified .NET type using . Deserialization will happen on a new thread. The JSON to deserialize. The type of the object to deserialize to. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. Populates the object with values from the JSON string. The JSON to populate values from. The target object to populate values onto. Populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. Asynchronously populates the object with values from the JSON string using . The JSON to populate values from. The target object to populate values onto. The used to deserialize the object. If this is null, default serialization settings will be used. A task that represents the asynchronous populate operation. Serializes the to a JSON string. The node to convert to JSON. A JSON string of the XNode. Serializes the to a JSON string using formatting. The node to convert to JSON. Indicates how the output is formatted. A JSON string of the XNode. Serializes the to a JSON string using formatting and omits the root object if is true. The node to serialize. Indicates how the output is formatted. Omits writing the root object. A JSON string of the XNode. Deserializes the from a JSON string. The JSON string. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by . The JSON string. The name of the root element to append when deserializing. The deserialized XNode Deserializes the from a JSON string nested in a root elment specified by and writes a .NET array attribute for collections. The JSON string. The name of the root element to append when deserializing. A flag to indicate whether to write the Json.NET array attribute. This attribute helps preserve arrays when converting the written XML back to JSON. The deserialized XNode Gets or sets a function that creates default . Default settings are automatically used by serialization methods on , and and on . To serialize without using any default settings create a with . Instructs the to use the specified when serializing the member or class. Initializes a new instance of the class. Type of the converter. Gets the type of the converter. The type of the converter. Represents a collection of . Instructs the how to serialize the collection. Initializes a new instance of the class. Initializes a new instance of the class with the specified container Id. The container Id. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Instructs the to deserialize properties with no matching class member into the specified collection and write values during serialization. Initializes a new instance of the class. Gets or sets a value that indicates whether to write extension data when serializing the object. true to write extension data when serializing the object; otherwise, false. The default is true. Gets or sets a value that indicates whether to read extension data when deserializing the object. true to read extension data when deserializing the object; otherwise, false. The default is true. Instructs the not to serialize the public field or public read/write property value. Instructs the how to serialize the object. Initializes a new instance of the class. Initializes a new instance of the class with the specified member serialization. The member serialization. Initializes a new instance of the class with the specified container Id. The container Id. Gets or sets the member serialization. The member serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Instructs the to always serialize the member with the specified name. Initializes a new instance of the class. Initializes a new instance of the class with the specified name. Name of the property. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets the null value handling used when serializing this property. The null value handling. Gets or sets the default value handling used when serializing this property. The default value handling. Gets or sets the reference loop handling used when serializing this property. The reference loop handling. Gets or sets the object creation handling used when deserializing this property. The object creation handling. Gets or sets the type name handling used when serializing this property. The type name handling. Gets or sets whether this property's value is serialized as a reference. Whether this property's value is serialized as a reference. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets a value indicating whether this property is required. A value indicating whether this property is required. Gets or sets the name of the property. The name of the property. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. The exception thrown when an error occurs during Json serialization or deserialization. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Serializes and deserializes objects into and from the JSON format. The enables you to control how objects are encoded into JSON. Initializes a new instance of the class. Creates a new instance. The will not use default settings. A new instance. The will not use default settings. Creates a new instance using the specified . The will not use default settings. The settings to be applied to the . A new instance using the specified . The will not use default settings. Creates a new instance. The will use default settings. A new instance. The will use default settings. Creates a new instance using the specified . The will use default settings. The settings to be applied to the . A new instance using the specified . The will use default settings. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Populates the JSON values onto the target object. The that contains the JSON structure to reader values from. The target object to populate values onto. Deserializes the Json structure contained by the specified . The that contains the JSON structure to deserialize. The being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The type of the object to deserialize. The instance of being deserialized. Deserializes the Json structure contained by the specified into an instance of the specified type. The containing the object. The of object being deserialized. The instance of being deserialized. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. The type of the value being serialized. This parameter is used when is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. Serializes the specified and writes the Json structure to a Stream using the specified . The used to write the Json structure. The to serialize. Occurs when the errors during serialization and deserialization. Gets or sets the used by the serializer when resolving references. Gets or sets the used by the serializer when resolving type names. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets how type name writing and reading is handled by the serializer. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how object references are preserved by the serializer. Get or set how reference loops (e.g. a class referencing itself) is handled. Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Get or set how null values are handled during serialization and deserialization. Get or set how null default are handled during serialization and deserialization. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets a collection that will be used during serialization. Collection that will be used during serialization. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how special floating point numbers, e.g. , and , are written as JSON text. Get or set how strings are escaped when writing JSON text. Get or set how and values are formatting when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. true if there will be a check for additional JSON content after deserializing an object; otherwise, false. Specifies the settings on a object. Initializes a new instance of the class. Gets or sets how reference loops (e.g. a class referencing itself) is handled. Reference loop handling. Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. Missing member handling. Gets or sets how objects are created during deserialization. The object creation handling. Gets or sets how null values are handled during serialization and deserialization. Null value handling. Gets or sets how null default are handled during serialization and deserialization. The default value handling. Gets or sets a collection that will be used during serialization. The converters. Gets or sets how object references are preserved by the serializer. The preserve references handling. Gets or sets how type name writing and reading is handled by the serializer. The type name handling. Gets or sets how metadata properties are used during deserialization. The metadata properties handling. Gets or sets how a type name assembly is written and resolved by the serializer. The type name assembly format. Gets or sets how constructors are used during deserialization. The constructor handling. Gets or sets the contract resolver used by the serializer when serializing .NET objects to JSON and vice versa. The contract resolver. Gets or sets the used by the serializer when resolving references. The reference resolver. Gets or sets the used by the serializer when writing trace messages. The trace writer. Gets or sets the used by the serializer when resolving type names. The binder. Gets or sets the error handler called during serialization and deserialization. The error handler called during serialization and deserialization. Gets or sets the used by the serializer when invoking serialization callback methods. The context. Get or set how and values are formatting when writing JSON text. Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . Indicates how JSON text output is formatted. Get or set how dates are written to JSON text. Get or set how time zones are handling during serialization and deserialization. Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. Get or set how special floating point numbers, e.g. , and , are written as JSON. Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. Get or set how strings are escaped when writing JSON text. Gets or sets the culture used when reading JSON. Defaults to . Gets a value indicating whether there will be a check for additional content after deserializing an object. true if there will be a check for additional content after deserializing an object; otherwise, false. Represents a reader that provides fast, non-cached, forward-only access to JSON text data. Initializes a new instance of the class with the specified . The TextReader containing the XML data to read. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Changes the state to closed. Gets a value indicating whether the class can return line information. true if LineNumber and LinePosition can be provided; otherwise, false. Gets the current line number. The current line number or 0 if no line information is available (for example, HasLineInfo returns false). Gets the current line position. The current line position or 0 if no line information is available (for example, HasLineInfo returns false). Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Creates an instance of the JsonWriter class using the specified . The TextWriter to write to. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the specified end token. The end token to write. Writes the property name of a name/value pair on a Json object. The name of the property. Writes the property name of a name/value pair on a JSON object. The name of the property. A flag to indicate whether the text should be escaped when it is written as a JSON property name. Writes indent characters. Writes the JSON value delimiter. Writes an indent space. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes out the given white space. The string of white space characters. Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. Gets or sets which character to use to quote attribute values. Gets or sets which character to use for indenting when is set to Formatting.Indented. Gets or sets a value indicating whether object names will be surrounded with quotes. Specifies the type of Json token. This is returned by the if a method has not been called. An object start token. An array start token. A constructor start token. An object property name. A comment. Raw JSON. An integer. A float. A string. A boolean. A null token. An undefined token. An object end token. An array end token. A constructor end token. A Date. Byte data. Represents a reader that provides validation. Initializes a new instance of the class that validates the content returned from the given . The to read from while validating. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Sets an event handler for receiving schema validation errors. Gets the text value of the current JSON token. Gets the depth of the current token in the JSON document. The depth of the current token in the JSON document. Gets the path of the current JSON token. Gets the quotation mark character used to enclose the value of a string. Gets the type of the current JSON token. Gets the Common Language Runtime (CLR) type for the current JSON token. Gets or sets the schema. The schema. Gets the used to construct this . The specified in the constructor. The exception thrown when an error occurs while reading Json text. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Contains the LINQ to JSON extension methods. Returns a collection of tokens that contains the ancestors of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the ancestors of every node in the source collection. Returns a collection of tokens that contains the descendants of every token in the source collection. The type of the objects in source, constrained to . An of that contains the source collection. An of that contains the descendants of every node in the source collection. Returns a collection of child properties of every object in the source collection. An of that contains the source collection. An of that contains the properties of every object in the source collection. Returns a collection of child values of every object in the source collection with the given key. An of that contains the source collection. The token key. An of that contains the values of every node in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child values of every object in the source collection with the given key. The type to convert the values to. An of that contains the source collection. The token key. An that contains the converted values of every node in the source collection with the given key. Returns a collection of converted child values of every object in the source collection. The type to convert the values to. An of that contains the source collection. An that contains the converted values of every node in the source collection. Converts the value. The type to convert the value to. A cast as a of . A converted value. Converts the value. The source collection type. The type to convert the value to. A cast as a of . A converted value. Returns a collection of child tokens of every array in the source collection. The source collection type. An of that contains the source collection. An of that contains the values of every node in the source collection. Returns a collection of converted child tokens of every array in the source collection. An of that contains the source collection. The type to convert the values to. The source collection type. An that contains the converted values of every node in the source collection. Returns the input typed as . An of that contains the source collection. The input typed as . Returns the input typed as . The source collection type. An of that contains the source collection. The input typed as . Represents a collection of objects. The type of token Gets the with the specified key. Represents a JSON array. Represents a token that can contain other tokens. Represents an abstract JSON token. Compares the values of two tokens, including the values of all descendant tokens. The first to compare. The second to compare. true if the tokens are equal; otherwise false. Adds the specified content immediately after this token. A content object that contains simple content or a collection of content objects to be added after this token. Adds the specified content immediately before this token. A content object that contains simple content or a collection of content objects to be added before this token. Returns a collection of the ancestor tokens of this token. A collection of the ancestor tokens of this token. Returns a collection of the sibling tokens after this token, in document order. A collection of the sibling tokens after this tokens, in document order. Returns a collection of the sibling tokens before this token, in document order. A collection of the sibling tokens before this token, in document order. Gets the with the specified key converted to the specified type. The type to convert the token to. The token key. The converted token value. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child tokens of this token, in document order, filtered by the specified type. The type to filter the child tokens on. A containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Removes this token from its parent. Replaces this token with the specified token. The value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Returns the indented JSON for this token. The indented JSON for this token. Returns the JSON for this token using the given formatting and converters. Indicates how the output is formatted. A collection of which will be used when writing the token. The JSON for this token using the given formatting and converters. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an explicit conversion from to . The value. The result of the conversion. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Performs an implicit conversion from to . The value to create a from. The initialized with the specified value. Creates an for this token. An that can be used to read this token and its descendants. Creates a from an object. The object that will be used to create . A with the value of the specified object Creates a from an object using the specified . The object that will be used to create . The that will be used when reading the object. A with the value of the specified object Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the . The object type that the token will be deserialized to. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates the specified .NET type from the using the specified . The object type that the token will be deserialized to. The that will be used when creating the object. The new object created from the JSON value. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from a . An positioned at the token to read into this . An that contains the token and its descendant tokens that were read from the reader. The runtime type of the token is determined by the token type of the first token encountered in the reader. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A , or null. Selects a using a JPath expression. Selects the token that matches the object path. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. A . Selects a collection of elements using a JPath expression. A that contains a JPath expression. An that contains the selected elements. Selects a collection of elements using a JPath expression. A that contains a JPath expression. A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. An that contains the selected elements. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Creates a new instance of the . All child tokens are recursively cloned. A new instance of the . Gets a comparer that can compare two tokens for value equality. A that can compare two nodes for value equality. Gets or sets the parent. The parent. Gets the root of this . The root of this . Gets the node type for this . The type. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the next sibling token of this node. The that contains the next sibling token. Gets the previous sibling token of this node. The that contains the previous sibling token. Gets the path of the JSON token. Gets the with the specified key. The with the specified key. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Raises the event. The instance containing the event data. Returns a collection of the child tokens of this token, in document order. An of containing the child tokens of this , in document order. Returns a collection of the child values of this token, in document order. The type to convert the values to. A containing the child values of this , in document order. Returns a collection of the descendant tokens for this token in document order. An containing the descendant tokens of the . Adds the specified content as children of this . The content to be added. Adds the specified content as the first children of this . The content to be added. Creates an that can be used to add tokens to the . An that is ready to have content written to it. Replaces the children nodes of this token with the specified content. The content. Removes the child nodes from this token. Merge the specified content into this . The content to be merged. Merge the specified content into this using . The content to be merged. The used to merge the content. Occurs when the items list of the collection has changed, or the collection is reset. Gets the container's children tokens. The container's children tokens. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Get the first child token of this token. A containing the first child token of the . Get the last child token of this token. A containing the last child token of the . Gets the count of child JSON tokens. The count of child JSON tokens Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the array. Initializes a new instance of the class with the specified content. The contents of the array. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Determines the index of a specific item in the . The object to locate in the . The index of if found in the list; otherwise, -1. Inserts an item to the at the specified index. The zero-based index at which should be inserted. The object to insert into the . is not a valid index in the . The is read-only. Removes the item at the specified index. The zero-based index of the item to remove. is not a valid index in the . The is read-only. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Adds an item to the . The object to add to the . The is read-only. Removes all items from the . The is read-only. Determines whether the contains a specific value. The object to locate in the . true if is found in the ; otherwise, false. Copies to. The array. Index of the array. Removes the first occurrence of a specific object from the . The object to remove from the . true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . The is read-only. Gets the container's children tokens. The container's children tokens. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the at the specified index. Gets a value indicating whether the is read-only. true if the is read-only; otherwise, false. Represents a JSON constructor. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name and content. The constructor name. The contents of the constructor. Initializes a new instance of the class with the specified name. The constructor name. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets or sets the name of this constructor. The constructor name. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Represents a collection of objects. The type of token An empty collection of objects. Initializes a new instance of the struct. The enumerable. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Returns an enumerator that iterates through a collection. An object that can be used to iterate through the collection. Determines whether the specified is equal to this instance. The to compare with this instance. true if the specified is equal to this instance; otherwise, false. Returns a hash code for this instance. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. Gets the with the specified key. Represents a JSON object. Initializes a new instance of the class. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the specified content. The contents of the object. Initializes a new instance of the class with the specified content. The contents of the object. Gets an of this object's properties. An of this object's properties. Gets a the specified name. The property name. A with the specified name or null. Gets an of this object's property values. An of this object's property values. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Load a from a string that contains JSON. A that contains JSON. A populated from the string that contains JSON. Creates a from an object. The object that will be used to create . A with the values of the specified object Creates a from an object. The object that will be used to create . The that will be used to read the object. A with the values of the specified object Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Gets the with the specified property name. Name of the property. The with the specified property name. Gets the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. One of the enumeration values that specifies how the strings will be compared. The with the specified property name. Tries to get the with the specified property name. The exact property name will be searched for first and if no matching property is found then the will be used to match a property. Name of the property. The value. One of the enumeration values that specifies how the strings will be compared. true if a value was successfully retrieved; otherwise, false. Adds the specified property name. Name of the property. The value. Removes the property with the specified name. Name of the property. true if item was successfully removed; otherwise, false. Tries the get value. Name of the property. The value. true if a value was successfully retrieved; otherwise, false. Returns an enumerator that iterates through the collection. A that can be used to iterate through the collection. Raises the event with the provided arguments. Name of the property. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Gets the container's children tokens. The container's children tokens. Occurs when a property value changes. Gets the node type for this . The type. Gets the with the specified key. The with the specified key. Gets or sets the with the specified property name. Represents a JSON property. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The property name. The property content. Initializes a new instance of the class. The property name. The property content. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Loads an from a . A that will be read for the content of the . A that contains the JSON that was read from the specified . Gets the container's children tokens. The container's children tokens. Gets the property name. The property name. Gets or sets the property value. The property value. Gets the node type for this . The type. Represents a raw JSON string. Represents a value in JSON (string, integer, date, etc). Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Initializes a new instance of the class with the given value. The value. Creates a comment with the given value. The value. A comment with the given value. Creates a string with the given value. The value. A string with the given value. Creates a null value. A null value. Creates a null value. A null value. Writes this token to a . A into which this method will write. A collection of which will be used when writing the token. Indicates whether the current object is equal to another object of the same type. true if the current object is equal to the parameter; otherwise, false. An object to compare with this object. Determines whether the specified is equal to the current . The to compare with the current . true if the specified is equal to the current ; otherwise, false. The parameter is null. Serves as a hash function for a particular type. A hash code for the current . Returns a that represents this instance. A that represents this instance. Returns a that represents this instance. The format. A that represents this instance. Returns a that represents this instance. The format provider. A that represents this instance. Returns a that represents this instance. The format. The format provider. A that represents this instance. Returns the responsible for binding operations performed on this object. The expression tree representation of the runtime value. The to bind this object. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. An object to compare with this instance. A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . is not the same type as this instance. Gets a value indicating whether this token has child tokens. true if this token has child values; otherwise, false. Gets the node type for this . The type. Gets or sets the underlying token value. The underlying token value. Initializes a new instance of the class from another object. A object to copy from. Initializes a new instance of the class. The raw json. Creates an instance of with the content of the reader's current token. The reader. An instance of with the content of the reader's current token. Specifies the settings used when merging JSON. Gets or sets the method used when merging JSON arrays. The method used when merging JSON arrays. Compares tokens to determine whether they are equal. Determines whether the specified objects are equal. The first object of type to compare. The second object of type to compare. true if the specified objects are equal; otherwise, false. Returns a hash code for the specified object. The for which a hash code is to be returned. A hash code for the specified object. The type of is a reference type and is null. Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. Initializes a new instance of the class. The token to read from. Reads the next JSON token from the stream as a . A or a null reference if the next JSON token is null. This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream as a . A . This method will return null at the end of an array. Reads the next JSON token from the stream. true if the next token was read successfully; false if there are no more tokens to read. Gets the path of the current JSON token. Specifies the type of token. No token type has been set. A JSON object. A JSON array. A JSON constructor. A JSON object property. A comment. An integer value. A float value. A string value. A boolean value. A null value. An undefined value. A date value. A raw JSON value. A collection of bytes value. A Guid value. A Uri value. A TimeSpan value. Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. Initializes a new instance of the class writing to the given . The container being written to. Initializes a new instance of the class. Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. Closes this stream and the underlying stream. Writes the beginning of a Json object. Writes the beginning of a Json array. Writes the start of a constructor with the given name. The name of the constructor. Writes the end. The token. Writes the property name of a name/value pair on a Json object. The name of the property. Writes a value. An error will raised if the value cannot be written as a single JSON token. The value to write. Writes a null value. Writes an undefined value. Writes raw JSON. The raw JSON to write. Writes out a comment /*...*/ containing the specified text. Text to place inside the comment. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Writes a value. The value to write. Gets the token being writen. The token being writen. Specifies how JSON arrays are merged together. Concatenate arrays. Union arrays, skipping items that already exist. Replace all array items. Merge array items together, matched by index. Specifies the member serialization options for the . All public members are serialized by default. Members can be excluded using or . This is the default member serialization mode. Only members must be marked with or are serialized. This member serialization mode can also be set by marking the class with . All public and private fields are serialized. Members can be excluded using or . This member serialization mode can also be set by marking the class with and setting IgnoreSerializableAttribute on to false. Specifies metadata property handling options for the . Read metadata properties located at the start of a JSON object. Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. Do not try to read metadata properties. Specifies missing member handling options for the . Ignore a missing member and do not attempt to deserialize it. Throw a when a missing member is encountered during deserialization. Specifies null value handling options for the . Include null values when serializing and deserializing objects. Ignore null values when serializing and deserializing objects. Specifies how object creation is handled by the . Reuse existing objects, create new objects when needed. Only reuse existing objects. Always create new objects. Specifies reference handling options for the . Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. Do not preserve references when serializing types. Preserve references when serializing into a JSON object structure. Preserve references when serializing into a JSON array structure. Preserve references when serializing. Specifies reference loop handling options for the . Throw a when a loop is encountered. Ignore loop references and do not serialize. Serialize loop references. Indicating whether a property is required. The property is not required. The default state. The property must be defined in JSON but can be a null value. The property must be defined in JSON and cannot be a null value. Contains the JSON schema extension methods. Determines whether the is valid. The source to test. The schema to test with. true if the specified is valid; otherwise, false. Determines whether the is valid. The source to test. The schema to test with. When this method returns, contains any error messages generated while validating. true if the specified is valid; otherwise, false. Validates the specified . The source to test. The schema to test with. Validates the specified . The source to test. The schema to test with. The validation event handler. An in-memory representation of a JSON Schema. Initializes a new instance of the class. Reads a from the specified . The containing the JSON Schema to read. The object representing the JSON Schema. Reads a from the specified . The containing the JSON Schema to read. The to use when resolving schema references. The object representing the JSON Schema. Load a from a string that contains schema JSON. A that contains JSON. A populated from the string that contains JSON. Parses the specified json. The json. The resolver. A populated from the string that contains JSON. Writes this schema to a . A into which this method will write. Writes this schema to a using the specified . A into which this method will write. The resolver used. Returns a that represents the current . A that represents the current . Gets or sets the id. Gets or sets the title. Gets or sets whether the object is required. Gets or sets whether the object is read only. Gets or sets whether the object is visible to users. Gets or sets whether the object is transient. Gets or sets the description of the object. Gets or sets the types of values allowed by the object. The type. Gets or sets the pattern. The pattern. Gets or sets the minimum length. The minimum length. Gets or sets the maximum length. The maximum length. Gets or sets a number that the value should be divisble by. A number that the value should be divisble by. Gets or sets the minimum. The minimum. Gets or sets the maximum. The maximum. Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. A flag indicating whether the value can not equal the number defined by the "minimum" attribute. Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. A flag indicating whether the value can not equal the number defined by the "maximum" attribute. Gets or sets the minimum number of items. The minimum number of items. Gets or sets the maximum number of items. The maximum number of items. Gets or sets the of items. The of items. Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . true if items are validated using their array position; otherwise, false. Gets or sets the of additional items. The of additional items. Gets or sets a value indicating whether additional items are allowed. true if additional items are allowed; otherwise, false. Gets or sets whether the array items must be unique. Gets or sets the of properties. The of properties. Gets or sets the of additional properties. The of additional properties. Gets or sets the pattern properties. The pattern properties. Gets or sets a value indicating whether additional properties are allowed. true if additional properties are allowed; otherwise, false. Gets or sets the required property if this property is present. The required property if this property is present. Gets or sets the a collection of valid enum values allowed. A collection of valid enum values allowed. Gets or sets disallowed types. The disallow types. Gets or sets the default value. The default value. Gets or sets the collection of that this schema extends. The collection of that this schema extends. Gets or sets the format. The format. Returns detailed information about the schema exception. Initializes a new instance of the class. Initializes a new instance of the class with a specified error message. The error message that explains the reason for the exception. Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. The error message that explains the reason for the exception. The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. Gets the line number indicating where the error occurred. The line number indicating where the error occurred. Gets the line position indicating where the error occurred. The line position indicating where the error occurred. Gets the path to the JSON where the error occurred. The path to the JSON where the error occurred. Generates a from a specified . Generate a from the specified type. The type to generate a from. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. A generated from the specified type. Generate a from the specified type. The type to generate a from. Specify whether the generated root will be nullable. A generated from the specified type. Generate a from the specified type. The type to generate a from. The used to resolve schema references. Specify whether the generated root will be nullable. A generated from the specified type. Gets or sets how undefined schemas are handled by the serializer. Gets or sets the contract resolver. The contract resolver. Resolves from an id. Initializes a new instance of the class. Gets a for the specified reference. The id. A for the specified reference. Gets or sets the loaded schemas. The loaded schemas. The value types allowed by the . No type specified. String type. Float type. Integer type. Boolean type. Object type. Array type. Null type. Any type. Specifies undefined schema Id handling options for the . Do not infer a schema Id. Use the .NET type name as the schema Id. Use the assembly qualified .NET type name as the schema Id. Returns detailed information related to the . Gets the associated with the validation error. The JsonSchemaException associated with the validation error. Gets the path of the JSON location where the validation error occurred. The path of the JSON location where the validation error occurred. Gets the text description corresponding to the validation error. The text description. Represents the callback method that will handle JSON schema validation events and the . Allows users to control class loading and mandate what class to load. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Resolves member mappings for a type, camel casing property names. Used by to resolves a for a given . Used by to resolves a for a given . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Initializes a new instance of the class. Initializes a new instance of the class. If set to true the will use a cached shared with other resolvers of the same type. Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly recommended to reuse instances with the . Resolves the contract for a given type. The type to resolve a contract for. The contract for a given type. Gets the serializable members for the type. The type to get serializable members for. The serializable members for the type. Creates a for the given type. Type of the object. A for the given type. Creates the constructor parameters. The constructor to create properties for. The type's member properties. Properties for the given . Creates a for the given . The matching member property. The constructor parameter. A created for the given . Resolves the default for the contract. Type of the object. The contract's default . Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Creates a for the given type. Type of the object. A for the given type. Determines which contract type is created for the given type. Type of the object. A for the given type. Creates properties for the given . The type to create properties for. /// The member serialization mode for the type. Properties for the given . Creates the used by the serializer to get and set values from a member. The member. The used by the serializer to get and set values from a member. Creates a for the given . The member's parent . The member to create a for. A created for the given . Resolves the name of the property. Name of the property. Name of the property. Gets the resolved name of the property. Name of the property. Name of the property. Gets a value indicating whether members are being get and set using dynamic code generation. This value is determined by the runtime permissions available. true if using dynamic code generation; otherwise, false. Gets or sets a value indicating whether compiler generated members should be serialized. true if serialized compiler generated members; otherwise, false. Initializes a new instance of the class. Resolves the name of the property. Name of the property. The property name camel cased. Get and set values for a using dynamic methods. Provides methods to get and set values. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Used to resolve references when serializing and deserializing JSON by the . Resolves a reference to its object. The serialization context. The reference to resolve. The object that Gets the reference for the sepecified object. The serialization context. The object to get a reference for. The reference to the object. Determines whether the specified object is referenced. The serialization context. The object to test for a reference. true if the specified object is referenced; otherwise, false. Adds a reference to the specified object. The serialization context. The reference. The object to reference. The default serialization binder used when resolving and loading classes from type names. When overridden in a derived class, controls the binding of a serialized object to a type. Specifies the name of the serialized object. Specifies the name of the serialized object. The type of the object the formatter creates a new instance of. When overridden in a derived class, controls the binding of a serialized object to a type. The type of the object the formatter creates a new instance of. Specifies the name of the serialized object. Specifies the name of the serialized object. Provides information surrounding an error. Gets the error. The error. Gets the original object that caused the error. The original object that caused the error. Gets the member that caused the error. The member that caused the error. Gets the path of the JSON location where the error occurred. The path of the JSON location where the error occurred. Gets or sets a value indicating whether this is handled. true if handled; otherwise, false. Provides data for the Error event. Initializes a new instance of the class. The current object. The error context. Gets the current object the error event is being raised against. The current object the error event is being raised against. Gets the error context. The error context. Represents a trace writer. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Contract details for a used by the . Contract details for a used by the . Contract details for a used by the . Gets the underlying type for the contract. The underlying type for the contract. Gets or sets the type created during deserialization. The type created during deserialization. Gets or sets whether this type contract is serialized as a reference. Whether this type contract is serialized as a reference. Gets or sets the default for this contract. The converter. Gets or sets all methods called immediately after deserialization of the object. The methods called immediately after deserialization of the object. Gets or sets all methods called during deserialization of the object. The methods called during deserialization of the object. Gets or sets all methods called after serialization of the object graph. The methods called after serialization of the object graph. Gets or sets all methods called before serialization of the object. The methods called before serialization of the object. Gets or sets all method called when an error is thrown during the serialization of the object. The methods called when an error is thrown during the serialization of the object. Gets or sets the method called immediately after deserialization of the object. The method called immediately after deserialization of the object. Gets or sets the method called during deserialization of the object. The method called during deserialization of the object. Gets or sets the method called after serialization of the object graph. The method called after serialization of the object graph. Gets or sets the method called before serialization of the object. The method called before serialization of the object. Gets or sets the method called when an error is thrown during the serialization of the object. The method called when an error is thrown during the serialization of the object. Gets or sets the default creator method used to create the object. The default creator method used to create the object. Gets or sets a value indicating whether the default creator is non public. true if the default object creator is non-public; otherwise, false. Initializes a new instance of the class. The underlying type for the contract. Gets or sets the default collection items . The converter. Gets or sets a value indicating whether the collection items preserve object references. true if collection items preserve object references; otherwise, false. Gets or sets the collection item reference loop handling. The reference loop handling. Gets or sets the collection item type name handling. The type name handling. Initializes a new instance of the class. The underlying type for the contract. Gets the of the collection items. The of the collection items. Gets a value indicating whether the collection type is a multidimensional array. true if the collection type is a multidimensional array; otherwise, false. Handles serialization callback events. The object that raised the callback event. The streaming context. Handles serialization error callback events. The object that raised the callback event. The streaming context. The error context. Sets extension data for an object during deserialization. The object to set extension data on. The extension data key. The extension data value. Gets extension data for an object during serialization. The object to set extension data on. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the property name resolver. The property name resolver. Gets the of the dictionary keys. The of the dictionary keys. Gets the of the dictionary values. The of the dictionary values. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets the object's properties. The object's properties. Gets or sets the property name resolver. The property name resolver. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Gets or sets the object member serialization. The member object serialization. Gets or sets a value that indicates whether the object's properties are required. A value indicating whether the object's properties are required. Gets the object's properties. The object's properties. Gets the constructor parameters required for any non-default constructor Gets a collection of instances that define the parameters used with . Gets or sets the override constructor used to create the object. This is set when a constructor is marked up using the JsonConstructor attribute. The override constructor. Gets or sets the parametrized constructor used to create the object. The parametrized constructor. Gets or sets the function used to create the object. When set this function will override . This function is called with a collection of arguments which are defined by the collection. The function used to create the object. Gets or sets the extension data setter. Gets or sets the extension data getter. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Maps a JSON property to a .NET member or constructor parameter. Returns a that represents this instance. A that represents this instance. Gets or sets the name of the property. The name of the property. Gets or sets the type that declared this property. The type that declared this property. Gets or sets the order of serialization and deserialization of a member. The numeric order of serialization or deserialization. Gets or sets the name of the underlying member or parameter. The name of the underlying member or parameter. Gets the that will get and set the during serialization. The that will get and set the during serialization. Gets or sets the type of the property. The type of the property. Gets or sets the for the property. If set this converter takes presidence over the contract converter for the property type. The converter. Gets or sets the member converter. The member converter. Gets or sets a value indicating whether this is ignored. true if ignored; otherwise, false. Gets or sets a value indicating whether this is readable. true if readable; otherwise, false. Gets or sets a value indicating whether this is writable. true if writable; otherwise, false. Gets or sets a value indicating whether this has a member attribute. true if has a member attribute; otherwise, false. Gets the default value. The default value. Gets or sets a value indicating whether this is required. A value indicating whether this is required. Gets or sets a value indicating whether this property preserves object references. true if this instance is reference; otherwise, false. Gets or sets the property null value handling. The null value handling. Gets or sets the property default value handling. The default value handling. Gets or sets the property reference loop handling. The reference loop handling. Gets or sets the property object creation handling. The object creation handling. Gets or sets or sets the type name handling. The type name handling. Gets or sets a predicate used to determine whether the property should be serialize. A predicate used to determine whether the property should be serialize. Gets or sets a predicate used to determine whether the property should be serialized. A predicate used to determine whether the property should be serialized. Gets or sets an action used to set whether the property has been deserialized. An action used to set whether the property has been deserialized. Gets or sets the converter used when serializing the property's collection items. The collection's items converter. Gets or sets whether this property's collection items are serialized as a reference. Whether this property's collection items are serialized as a reference. Gets or sets the the type name handling used when serializing the property's collection items. The collection's items type name handling. Gets or sets the the reference loop handling used when serializing the property's collection items. The collection's items reference loop handling. A collection of objects. Initializes a new instance of the class. The type. When implemented in a derived class, extracts the key from the specified element. The element from which to extract the key. The key for the specified element. Adds a object. The property to add to the collection. Gets the closest matching object. First attempts to get an exact case match of propertyName and then a case insensitive match. Name of the property. A matching property if found. Gets a property by property name. The name of the property to get. Type property name string comparison. A matching property if found. Contract details for a used by the . Initializes a new instance of the class. The underlying type for the contract. Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added. Initializes a new instance of the class. Writes the specified trace level, message and optional exception. The at which to write this trace. The trace message. The trace exception. This parameter is optional. Returns an enumeration of the most recent trace messages. An enumeration of the most recent trace messages. Returns a of the most recent trace messages. A of the most recent trace messages. Gets the that will be used to filter the trace messages passed to the writer. For example a filter level of Info will exclude Verbose messages and include Info, Warning and Error messages. The that will be used to filter the trace messages passed to the writer. Represents a method that constructs an object. The object type to create. When applied to a method, specifies that the method is called when an error occurs serializing an object. Get and set values for a using reflection. Initializes a new instance of the class. The member info. Sets the value. The target to set the value on. The value to set on the target. Gets the value. The target to get the value from. The value. Specifies how strings are escaped when writing JSON text. Only control characters (e.g. newline) are escaped. All non-ASCII and control characters (e.g. newline) are escaped. HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. Specifies what messages to output for the class. Output no tracing and debugging messages. Output error-handling messages. Output warnings and error-handling messages. Output informational messages, warnings, and error-handling messages. Output all debugging and tracing messages. Specifies type name handling options for the . Do not include the .NET type name when serializing types. Include the .NET type name when serializing into a JSON object structure. Include the .NET type name when serializing into a JSON array structure. Always include the .NET type name when serializing. Include the .NET type name when the type of the object being serialized is not the same as its declared type. Determines whether the collection is null or empty. The collection. true if the collection is null or empty; otherwise, false. Adds the elements of the specified collection to the specified generic IList. The list to add to. The collection of elements to add. Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. The type of the elements of source. A sequence in which to locate a value. The object to locate in the sequence An equality comparer to compare values. The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. Converts the value to the specified type. If the value is unable to be converted, the value is checked whether it assignable to the specified type. The value to convert. The culture to use when converting. The type to convert or cast the value to. The converted type. If conversion was unsuccessful, the initial value is returned if assignable to the target type. Helper method for generating a MetaObject which calls a specific method on Dynamic that returns a result Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Helper method for generating a MetaObject which calls a specific method on Dynamic, but uses one of the arguments for the result. Returns a Restrictions object which includes our current restrictions merged with a restriction limiting our type Gets a dictionary of the names and values of an Enum type. Gets a dictionary of the names and values of an Enum type. The enum type to get names and values for. Gets the type of the typed collection's items. The type. The type of the typed collection's items. Gets the member's underlying type. The member. The underlying type of the member. Determines whether the member is an indexed property. The member. true if the member is an indexed property; otherwise, false. Determines whether the property is an indexed property. The property. true if the property is an indexed property; otherwise, false. Gets the member's value on the object. The member. The target object. The member's value on the object. Sets the member's value on the target object. The member. The target. The value. Determines whether the specified MemberInfo can be read. The MemberInfo to determine whether can be read. /// if set to true then allow the member to be gotten non-publicly. true if the specified MemberInfo can be read; otherwise, false. Determines whether the specified MemberInfo can be set. The MemberInfo to determine whether can be set. if set to true then allow the member to be set non-publicly. if set to true then allow the member to be set if read-only. true if the specified MemberInfo can be set; otherwise, false. Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. Determines whether the string is all white space. Empty string will return false. The string to test whether it is all white space. true if the string is all white space; otherwise, false. Nulls an empty string. The string. Null if the string was null, otherwise the string unchanged. Specifies the state of the . An exception has been thrown, which has left the in an invalid state. You may call the method to put the in the Closed state. Any other method calls results in an being thrown. The method has been called. An object is being written. A array is being written. A constructor is being written. A property is being written. A write method has not been called. ================================================ FILE: packages/Newtonsoft.Json.6.0.4/tools/install.ps1 ================================================ param($installPath, $toolsPath, $package, $project) # open json.net splash page on package install # don't open if json.net is installed as a dependency try { $url = "http://james.newtonking.com/json" $dte2 = Get-Interface $dte ([EnvDTE80.DTE2]) if ($dte2.ActiveWindow.Caption -eq "Package Manager Console") { # user is installing from VS NuGet console # get reference to the window, the console host and the input history # show webpage if "install-package newtonsoft.json" was last input $consoleWindow = $(Get-VSComponentModel).GetService([NuGetConsole.IPowerConsoleWindow]) $props = $consoleWindow.GetType().GetProperties([System.Reflection.BindingFlags]::Instance -bor ` [System.Reflection.BindingFlags]::NonPublic) $prop = $props | ? { $_.Name -eq "ActiveHostInfo" } | select -first 1 if ($prop -eq $null) { return } $hostInfo = $prop.GetValue($consoleWindow) if ($hostInfo -eq $null) { return } $history = $hostInfo.WpfConsole.InputHistory.History $lastCommand = $history | select -last 1 if ($lastCommand) { $lastCommand = $lastCommand.Trim().ToLower() if ($lastCommand.StartsWith("install-package") -and $lastCommand.Contains("newtonsoft.json")) { $dte2.ItemOperations.Navigate($url) | Out-Null } } } else { # user is installing from VS NuGet dialog # get reference to the window, then smart output console provider # show webpage if messages in buffered console contains "installing...newtonsoft.json" in last operation $instanceField = [NuGet.Dialog.PackageManagerWindow].GetField("CurrentInstance", [System.Reflection.BindingFlags]::Static -bor ` [System.Reflection.BindingFlags]::NonPublic) $consoleField = [NuGet.Dialog.PackageManagerWindow].GetField("_smartOutputConsoleProvider", [System.Reflection.BindingFlags]::Instance -bor ` [System.Reflection.BindingFlags]::NonPublic) if ($instanceField -eq $null -or $consoleField -eq $null) { return } $instance = $instanceField.GetValue($null) if ($instance -eq $null) { return } $consoleProvider = $consoleField.GetValue($instance) if ($consoleProvider -eq $null) { return } $console = $consoleProvider.CreateOutputConsole($false) $messagesField = $console.GetType().GetField("_messages", [System.Reflection.BindingFlags]::Instance -bor ` [System.Reflection.BindingFlags]::NonPublic) if ($messagesField -eq $null) { return } $messages = $messagesField.GetValue($console) if ($messages -eq $null) { return } $operations = $messages -split "==============================" $lastOperation = $operations | select -last 1 if ($lastOperation) { $lastOperation = $lastOperation.ToLower() $lines = $lastOperation -split "`r`n" $installMatch = $lines | ? { $_.StartsWith("------- installing...newtonsoft.json ") } | select -first 1 if ($installMatch) { $dte2.ItemOperations.Navigate($url) | Out-Null } } } } catch { # stop potential errors from bubbling up # worst case the splash page won't open } # yolo ================================================ FILE: packages/System.IdentityModel.Tokens.Jwt.4.0.0/lib/net45/System.IdentityModel.Tokens.Jwt.Xml ================================================ System.IdentityModel.Tokens.Jwt Helper class for adding DateTimes and Timespans. Add a DateTime and a TimeSpan. The maximum time is DateTime.MaxTime. It is not an error if time + timespan > MaxTime. Just return MaxTime. Initial value. to add. as the sum of time and timespan. Gets the Maximum value for a DateTime specifying kind. DateTimeKind to use. DateTime of specified kind. Gets the Minimum value for a DateTime specifying kind. DateTimeKind to use. DateTime of specified kind. Error codes and messages Serializes the list of strings into string as follows: 'str1','str2','str3' ... The strings used to build a comma delimited string. The single . Provides signing and verifying operations when working with an This class defines the object model for types that provide signature services. Produces a signature over the 'input' bytes to sign. signed bytes Verifies that a signature created over the 'input' matches the signature. bytes to verify. signature to compare against. true if the computed signature matches the signature parameter, false otherwise. Calls and Can be over written in descendants to dispose of internal components. true, if called from Dispose(), false, if invoked inside a finalizer Gets or sets a user context for a . Initializes a new instance of the class used to create and verify signatures. The that will be used for cryptographic operations. The signature algorithm to apply. If this is required to create signatures then set this to true. Creating signatures requires that the has access to a private key. Verifying signatures (the default), does not require access to the private key. 'key' is null. 'algorithm' is null. 'algorithm' contains only whitespace. willCreateSignatures is true and .KeySize is less than . .KeySize is less than . Note: this is always checked. Is thrown if the throws. Is thrown if the returns null. Is thrown if the throws. Is thrown if the returns null. Is thrown if the throws. Is thrown if the returns null. Is thrown if the throws. Is thrown if the throws. Produces a signature over the 'input' using the and algorithm passed to . bytes to be signed. a signature over the input. 'input' is null. 'input.Length' == 0. if has been called. if the internal is null. This can occur if the constructor parameter 'willBeUsedforSigning' was not 'true'. if the internal is null. This can occur if a derived type deletes it or does not create it. Verifies that a signature over the' input' matches the signature. the bytes to generate the signature over. the value to verify against. true if signature matches, false otherwise. 'input' is null. 'signature' is null. 'input.Length' == 0. 'signature.Length' == 0. if has been called. if the internal is null. This can occur if a derived type does not call the base constructor. if the internal is null. This can occur if a derived type deletes it or does not create it. Calls to release this managed resources. true, if called from Dispose(), false, if invoked inside a finalizer. Encodes and Decodes strings as Base64Url encoding. The following functions perform base64url encoding which differs from regular base64 encoding as follows * padding is skipped so the pad character '=' doesn't have to be percent encoded * the 62nd and 63rd regular base64 encoding characters ('+' and '/') are replace with ('-' and '_') The changes make the encoding alphabet file and URL safe. string to encode. Base64Url encoding of the UTF8 bytes. Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64-url digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert. An array of 8-bit unsigned integers. An offset in inArray. The number of elements of inArray to convert. The string representation in base 64 url encodingof length elements of inArray, starting at position offset. 'inArray' is null. offset or length is negative OR offset plus length is greater than the length of inArray. Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64-url digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert. An array of 8-bit unsigned integers. The string representation in base 64 url encodingof length elements of inArray, starting at position offset. 'inArray' is null. offset or length is negative OR offset plus length is greater than the length of inArray. Converts the specified string, which encodes binary data as base-64-url digits, to an equivalent 8-bit unsigned integer array. base64Url encoded string. UTF8 bytes. Decodes the string from Base64UrlEncoded to UTF8. string to decode. UTF8 string. Defines the inbound and outbound mapping for claim claim types from jwt to .net claim Initializes static members of the class. Gets the InboundClaimTypeMap used by JwtSecurityTokenHandler when producing claims from jwt. Gets the OutboundClaimTypeMap is used by JwtSecurityTokenHandler to shorten claim types when creating a jwt. Provides common code for services to use in generating diagnostics and taking actions. Returns true if the provided exception matches any of a list of hard system faults that should be allowed through to outer exception handlers. The exception to check. Typically this method is used when there is a need to catch all exceptions, but to ensure that .NET runtime and execution engine exceptions are not absorbed by the catch block. Use of this method also avoids FxCop warnings about not using general catch blocks. Please note that use of this method is expensive because of the amount of reflection it performs. If you can refactor your code to catch more specific exceptions than Exception to avoid using this method, you should. Example of use: try { // Code needing a full Exception catch block } catch (Exception ex) { if (DiagnosticUtility.IsFatal(ex)) { throw; } // Perform any needed logging and handling for absorbed exception. } true if the exception should NOT be trapped Returns the absolute DateTime or the Seconds since Unix Epoch, where Epoch is UTC 1970-01-01T0:0:0Z. DateTime as UTV for UnixEpoch Per JWT spec: Gets the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the desired date/time. The DateTime to convert to seconds. if dateTimeUtc less than UnixEpoch, return 0 the number of seconds since Unix Epoch. Creates a DateTime from epoch time. Number of seconds. The DateTime in UTC. ISecurityTokenValidator Returns true if the token can be read, false otherwise. Validates a token passed as a string using Gets and sets the maximum size in bytes, that a will be processed. Interface that defines a simple cache for tacking replaying of security tokens. Try to add a securityToken. the security token to add. the time when security token expires. true if the security token was successfully added. Try to find securityToken the security token to find. true if the security token is found. Definition for a delegate that can be set on to control serialization of objects into JSON. Object to serialize The serialized object. Definition for a delegate that can be set on to control deserialization JSON into objects. JSON to deserialize. type expected. The deserialized object. Dictionary extensions for serializations Serializes an object to JSON. The object to serialize the object as JSON. Deserialzes JSON into an instance of type T. the object type. the JSON to deserialze. a new instance of type T. Deserialzes JSON into an instance of . the JSON to deserialze. a new instance . Deserialzes JSON into an instance of . the JSON to deserialze. a new instance . Gets or sets a to use when serializing objects to JSON. if 'value' is null. Gets or sets a to use when deserializing objects from JSON. if 'value' is null. contains the element and attribute names used in config when parsing the JwtSecurityTokenHandler from XML. Constants for Json Web tokens. Short header type. Long header type. Short token type. Long token type. Token format: 'header.payload.signature'. Signature is optional, but '.' is required. When mapping json to .Net Claim(s), if the value was not a string (or an enumeration of strings), the ClaimValue will serialized using the current JSON serializer, a property will be added with the .Net type and the ClaimTypeValue will be set to 'JsonClaimValueType'. List of algorithms see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 see: http://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-26#section-3 List of header parameter names see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5. see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 see: http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-5 List of registered claims from different sources http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://openid.net/specs/openid-connect-core-1_0.html#IDToken http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://openid.net/specs/openid-connect-core-1_0.html#IDToken http://openid.net/specs/openid-connect-core-1_0.html#IDToken http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://openid.net/specs/openid-connect-core-1_0.html#IDToken http://openid.net/specs/openid-connect-core-1_0.html#IDToken http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-20#section-4 Initializes a new instance of which contains JSON objects representing the cryptographic operations applied to the JWT and optionally any additional properties of the JWT. The member names within the JWT Header are referred to as Header Parameter Names. These names MUST be unique and the values must be (s). The corresponding values are referred to as Header Parameter Values. Initializes a new instance of the class. Default string comparer . Initializes a new instance of the class. With the Header Parameters as follows: { { typ, JWT }, { alg, Mapped( } } See: Algorithm Mapping below. The that will be or were used to sign the . For each in signingCredentials.SigningKeyIdentifier if the clause is a Header Parameter { clause.Name, clause.Id } will be added. For example, if clause.Name == 'kid' and clause.Id == 'SecretKey99'. The JSON object { kid, SecretKey99 } would be added. In addition, if the is a the JSON object { x5t, Base64UrlEncoded( } will be added. This simplifies the common case where a X509Certificate is used. ================= Algorithm Mapping ================= describes the algorithm that is discoverable by the CLR runtime. The { alg, 'value' } placed in the header reflects the JWT specification. contains a signature mapping where the 'value' above will be translated according to this mapping. Current mapping is:     'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256' => 'RS256'     'http://www.w3.org/2001/04/xmldsig-more#hmac-sha256' => 'HS256' Serializes this instance to JSON. this instance as JSON. use to customize JSON serialization. Encodes this instance as Base64UrlEncoded JSON. Base64UrlEncoded JSON. use to customize JSON serialization. Deserializes Base64UrlEncoded JSON into a instance. base64url encoded JSON to deserialize. an instance of . use to customize JSON serialization. Deserialzes JSON into a instance. the JSON to deserialize. an instance of . use to customize JSON serialization. Gets the signature algorithm that was used to create the signature. If the signature algorithm is not found, null is returned. Gets the passed in the constructor. This value may be null. Gets the mime type (Typ) of the token. If the mime type is not found, null is returned. Gets a that contains a for each key found. Keys are identified by matching a 'Reserved Header Parameter Name' found in the in JSON Web Signature specification. Names recognized are: jku, jkw, kid, x5c, x5t, x5u 'x5t' adds a passing a the Base64UrlDecoded( Value ) to the constructor. 'jku', 'jkw', 'kid', 'x5u', 'x5c' each add a with the { Name, Value } passed to the . If no keys are found, an empty will be returned. Initializes a new instance of which contains JSON objects representing the claims contained in the JWT. Each claim is a JSON object of the form { Name, Value }. Initializes a new instance of the class with no claims. Default string comparer . Creates a empty Initializes a new instance of the class with . Default string comparer . the claims to add. Initializes a new instance of the class with claims added for each parameter specified. Default string comparer . if this value is not null, a { iss, 'issuer' } claim will be added. if this value is not null, a { aud, 'audience' } claim will be added if this value is not null then for each a { 'Claim.Type', 'Claim.Value' } is added. If duplicate claims are found then a { 'Claim.Type', List<object> } will be created to contain the duplicate values. if notbefore.HasValue is 'true' a { nbf, 'value' } claim is added. if expires.HasValue is 'true' a { exp, 'value' } claim is added. Comparison is set to The 4 parameters: 'issuer', 'audience', 'notBefore', 'expires' take precednece over (s) in 'claims'. The values in 'claims' will be overridden. if 'expires' <= 'notbefore'. Adds a JSON object representing the to the { 'Claim.Type', 'Claim.Value' } is added. If a JSON object is found with the name == then a { 'Claim.Type', List<object> } will be created to contain the duplicate values. See for details on how is applied. 'claim' is null. Adds a number of to the as JSON { name, value } pairs. for each a JSON pair { 'Claim.Type', 'Claim.Value' } is added. If duplicate claims are found then a { 'Claim.Type', List<object> } will be created to contain the duplicate values. Each added will have translated according to the mapping found in . Adding and removing to will affect the name component of the Json claim Any in the that is null, will be ignored. 'claims' is null. Gets the DateTime using the number of seconds from 1970-01-01T0:0:0Z (UTC) Claim in the payload that should map to an integer. If the claim is not found, the function returns: DateTime.MinValue if an overflow exception is thrown by the runtime. the DateTime representation of a claim. Serializes this instance to JSON. this instance as JSON. use to customize JSON serialization. Encodes this instance as Base64UrlEncoded JSON. Base64UrlEncoded JSON. use to customize JSON serialization. Deserializes Base64UrlEncoded JSON into a instance. base64url encoded JSON to deserialize. an instance of . use to customize JSON serialization. Deserialzes JSON into a instance. the JSON to deserialize. an instance of . use to customize JSON serialization. Gets the 'value' of the 'actor' claim { actort, 'value' }. If the 'actor' claim is not found, null is returned. Gets the 'value' of the 'acr' claim { acr, 'value' }. If the 'acr' claim is not found, null is returned. Gets the 'value' of the 'amr' claim { amr, 'value' }. If the 'amr' claim is not found, null is returned. Gets the 'value' of the 'auth_time' claim { auth_time, 'value' }. If the 'auth_time' claim is not found, null is returned. Gets the 'value' of the 'audience' claim { aud, 'value' } as a list of strings. If the 'audience' claim is not found, an empty enumerable is returned. Gets the 'value' of the 'azp' claim { azp, 'value' }. If the 'azp' claim is not found, null is returned. Gets 'value' of the 'c_hash' claim { c_hash, 'value' }. If the 'c_hash' claim is not found, null is returned. Gets the 'value' of the 'expiration' claim { exp, 'value' }. If the 'expiration' claim is not found OR could not be converted to , null is returned. Gets the 'value' of the 'JWT ID' claim { jti, 'value' }. If the 'JWT ID' claim is not found, null is returned. Gets the 'value' of the 'Issued At' claim { iat, 'value' }. If the 'Issued At' claim is not found OR cannot be converted to null is returned. Gets 'value' of the 'issuer' claim { iss, 'value' }. If the 'issuer' claim is not found, null is returned. Gets the 'value' of the 'expiration' claim { nbf, 'value' }. If the 'notbefore' claim is not found OR could not be converted to , null is returned. Gets 'value' of the 'nonce' claim { nonce, 'value' }. If the 'nonce' claim is not found, null is returned. Gets "value" of the 'subject' claim { sub, 'value' }. If the 'subject' claim is not found, null is returned. Gets 'value' of the 'notbefore' claim { nbf, 'value' } converted to a assuming 'value' is seconds since UnixEpoch (UTC 1970-01-01T0:0:0Z). If the 'notbefore' claim is not found, then is returned. Gets 'value' of the 'expiration' claim { exp, 'value' } converted to a assuming 'value' is seconds since UnixEpoch (UTC 1970-01-01T0:0:0Z). If the 'expiration' claim is not found, then is returned. Gets a for each JSON { name, value }. Each (s) returned will have the translated according to the mapping found in . Adding and removing to will affect the value of the . and will be set to the value of ( if null). A designed for representing a JSON Web Token (JWT). Initializes a new instance of from a string in JWS Compact serialized format. A JSON Web Token that has been serialized in JWS Compact serialized format. 'jwtEncodedString' is null. 'jwtEncodedString' contains only whitespace. 'jwtEncodedString' is not in JWS Compact serialized format. The contents of this have not been validated, the JSON Web Token is simply decoded. Validation can be accomplished using Initializes a new instance of the class where the contains the crypto algorithms applied to the encoded and . The jwtEncodedString is the result of those operations. Contains JSON objects representing the cryptographic operations applied to the JWT and optionally any additional properties of the JWT Contains JSON objects representing the claims contained in the JWT. Each claim is a JSON object of the form { Name, Value } base64urlencoded JwtHeader base64urlencoded JwtPayload base64urlencoded JwtSignature 'header' is null. 'payload' is null. 'rawSignature' is null. 'rawHeader' or 'rawPayload' is null or whitespace. Initializes a new instance of the class where the contains the crypto algorithms applied to the encoded and . The jwtEncodedString is the result of those operations. Contains JSON objects representing the cryptographic operations applied to the JWT and optionally any additional properties of the JWT Contains JSON objects representing the claims contained in the JWT. Each claim is a JSON object of the form { Name, Value } 'header' is null. 'payload' is null. Initializes a new instance of the class specifying optional parameters. if this value is not null, a { iss, 'issuer' } claim will be added. if this value is not null, a { aud, 'audience' } claim will be added if this value is not null then for each a { 'Claim.Type', 'Claim.Value' } is added. If duplicate claims are found then a { 'Claim.Type', List<object> } will be created to contain the duplicate values. if expires.HasValue a { exp, 'value' } claim is added. if notbefore.HasValue a { nbf, 'value' } claim is added. The that will be used to sign the . See for details pertaining to the Header Parameter(s). if 'expires' <= 'notbefore'. Decodes the and A string containing the header and payload in JSON format Decodes the string into the header, payload and signature Base64Url encoded string. Gets the 'value' of the 'actor' claim { actort, 'value' }. If the 'actor' claim is not found, null is returned. Gets the list of 'audience' claim { aud, 'value' }. If the 'audience' claim is not found, enumeration will be empty. Gets the (s) for this token. (s) returned will NOT have the translated according to Gets the Base64UrlEncoded associated with this instance. Gets the Base64UrlEncoded associated with this instance. Gets the associated with this instance. Gets the 'value' of the 'JWT ID' claim { jti, ''value' }. If the 'JWT ID' claim is not found, null is returned. Gets the 'value' of the 'issuer' claim { iss, 'value' }. If the 'issuer' claim is not found, null is returned. Gets the associated with this instance. Gets the original raw data of this instance when it was created. The original JSON Compact serialized format passed to one of the two constructors or Gets the original raw data of this instance when it was created. The original JSON Compact serialized format passed to one of the two constructors or Gets the original raw data of this instance when it was created. The original JSON Compact serialized format passed to one of the two constructors or Gets the original raw data of this instance when it was created. The original JSON Compact serialized format passed to one of the two constructors or Gets the s for this instance. By default an empty collection is returned. Gets the signature algorithm associated with this instance. if there is a associated with this instance, a value will be returned. Null otherwise. Gets the associated with this instance. Gets or sets the that signed this instance. .ValidateSignature(...) sets this value when a is used to successfully validate a signature. Gets or sets the that contains a that signed this instance. .ValidateSignature(...) sets this value when a is used to successfully validate a signature. Gets "value" of the 'subject' claim { sub, 'value' }. If the 'subject' claim is not found, null is returned. Gets 'value' of the 'notbefore' claim { nbf, 'value' } converted to a assuming 'value' is seconds since UnixEpoch (UTC 1970-01-01T0:0:0Z). If the 'notbefore' claim is not found, then is returned. Gets 'value' of the 'expiration' claim { exp, 'value' } converted to a assuming 'value' is seconds since UnixEpoch (UTC 1970-01-01T0:0:0Z). If the 'expiration' claim is not found, then is returned. A designed for creating and validating Json Web Tokens. See http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-07. Default lifetime of tokens created. When creating tokens, if 'expires' and 'notbefore' are both null, then a default will be set to: expires = DateTime.UtcNow, notbefore = DateTime.UtcNow + TimeSpan.FromMinutes(TokenLifetimeInMinutes). Initializes a new instance of the class. Obsolete method, use when processing tokens. use . when processing tokens. Determines if the is positioned on a well formed <BinarySecurityToken> element. positioned at xml. 'true' if the reader is positioned at an element <BinarySecurityToken>. in the namespace: 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd' With an attribute of 'valueType' equal to one of:     "urn:ietf:params:oauth:token-type:jwt", "JWT" For example: <wsse:BinarySecurityToken valueType = "JWT"> ... 'false' otherwise. The 'EncodingType' attribute is optional, if it is set, it must be equal to: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary". 'reader' is null. Determines if the string is a well formed Json Web token (see http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-07) string that should represent a valid JSON Web Token. Uses ( token, @"^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$" ). 'true' if the token is in JSON compact serialization format. 'false' if token.Length * 2 > . 'tokenString' is null. Creating is not NotSupported. to create a . Creates a based on values found in the . Contains the parameters used to create the token. A . If is not null, will be signed. 'tokenDescriptor' is null. Uses the constructor, first creating the and . If is not null, will be signed. the issuer of the token. the audience for this token. the source of the (s) for this token. the notbefore time for this token. the expiration time for this token. contains cryptographic material for generating a signature. optional . If is not null, then a claim { actort, 'value' } will be added to the payload. for details on how the value is created. See for details on how the HeaderParameters are added to the header. See for details on how the values are added to the payload. If signautureProvider is not null, then it will be used to create the signature and will not be called. A . if 'expires' <= 'notBefore'. Gets the token type identifier(s) supported by this handler. A collection of strings that identify the tokens this instance can handle. When receiving a wrapped inside a <wsse:BinarySecurityToken> element. The <wsse:BinarySecurityToken> element must have the ValueType attribute set to one of these values in order for this handler to recognize that it can read the token. Reads a JSON web token wrapped inside a WS-Security BinarySecurityToken xml element. The pointing at the jwt. An instance of First calls .CanReadToken The reader must be positioned at an element named: BinarySecurityToken'. in the namespace: 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd' with a 'ValueType' attribute equal to one of: "urn:ietf:params:oauth:token-type:jwt", "JWT". For example <wsse:BinarySecurityToken valueType = "JWT"> ... The 'EncodingType' attribute is optional, if it is set, it must be equal to: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" 'reader' is null. if returns false. Reads a token encoded in JSON Compact serialized format. A 'JSON Web Token' (JWT) that has been encoded as a JSON object. May be signed using 'JSON Web Signature' (JWS). The JWT must be encoded using Base64Url encoding of the UTF-8 representation of the JWT: Header, Payload and Signature. The contents of the JWT returned are not validated in any way, the token is simply decoded. Use ValidateToken to validate the JWT. A Obsolete method, use . use . Reads and validates a token encoded in JSON Compact serialized format. A 'JSON Web Token' (JWT) that has been encoded as a JSON object. May be signed using 'JSON Web Signature' (JWS). Contains validation parameters for the . The that was validated. 'securityToken' is null or whitespace. 'validationParameters' is null. 'securityToken.Length' > . A from the jwt. Does not include the header claims. Writes the wrapped in a WS-Security BinarySecurityToken using the . used to write token. The that will be written. 'writer' is null. 'token' is null. 'token' is not a not . The current contents are encoded. If is not null, the encoding will contain a signature. Writes the as a JSON Compact serialized format string. to serialize. If the are not null, the encoding will contain a signature. 'token' is null. 'token' is not a not . The as a signed (if exist) encoded string. Produces a signature over the 'input' using the and algorithm specified. string to be signed the to use. the algorithm to use. if provided, the will be used to sign the token The signature over the bytes obtained from UTF8Encoding.GetBytes( 'input' ). The used to created the signature is obtained by calling . 'input' is null. returns null. Validates that the signature, if found and / or required is valid. A 'JSON Web Token' (JWT) that has been encoded as a JSON object. May be signed using 'JSON Web Signature' (JWS). that contains signing keys. thrown if 'token is null or whitespace. thrown if 'validationParameters is null. thrown if a signature is not found and is true. thrown if the 'token' has a key identifier and none of the (s) provided result in a validated signature. This can indicate that a key refresh is required. thrown if after trying all the (s), none result in a validated signture AND the 'token' does not have a key identifier. that has the signature validated if token was signed and is true. If the 'token' is signed, the signature is validated even if is false. If the 'token' signature is validated, then the will be set to the key that signed the 'token'. Produces a readable string for a key, used in error messages. Creates a from a . The to use as a source. The value to set contains parameters for validating the token. A containing the . Creates the 'value' for the actor claim: { actort, 'value' } as actor. representing the actor. If is not null:   if 'type' is 'string', return as string.   if 'type' is 'BootstrapContext' and 'BootstrapContext.SecurityToken' is 'JwtSecurityToken'     if 'JwtSecurityToken.RawData' != null, return RawData.     else return .   if 'BootstrapContext.Token' != null, return 'Token'. default: new ( ( actor.Claims ). 'actor' is null. Determines if the audiences found in a are valid. The audiences found in the . The being validated. required for validation. see for additional details. Validates the lifetime of a . The value of the 'nbf' claim if it exists in the 'jwt'. The value of the 'exp' claim if it exists in the 'jwt'. The being validated. required for validation. for additional details. Determines if an issuer found in a is valid. The issuer to validate The that is being validated. required for validation. The issuer to use when creating the (s) in the . for additional details. Returns a to use when validating the signature of a token. the representation of the token that is being validated. the that is being validated. the found in the token. A required for validation. Returns a to use for signature validation. if 'keyIdentifier' is null. if 'validationParameters' is null. If key fails to resolve, then null is returned Validates the is an expected value. The that signed the . The to validate. the current . If the is a then the X509Certificate2 will be validated using . Gets or sets the used to map Inbound Cryptographic Algorithms. Strings that describe Cryptographic Algorithms that are understood by the runtime are not necessarily the same values used in the JsonWebToken specification. When a signature is validated, the algorithm is obtained from the HeaderParameter { alg, 'value' }. The 'value' is translated according to this mapping and the translated 'value' is used when performing cryptographic operations. Default mapping is:     RS256 => http://www.w3.org/2001/04/xmldsig-more#rsa-sha256     HS256 => http://www.w3.org/2001/04/xmldsig-more#hmac-sha256 'value' is null. Gets or sets the used to map Outbound Cryptographic Algorithms. Strings that describe Cryptographic Algorithms understood by the runtime are not necessarily the same in the JsonWebToken specification. This property contains mappings the will be used to when creating a and setting the HeaderParameter { alg, 'value' }. The 'value' set is translated according to this mapping. Default mapping is:     http://www.w3.org/2001/04/xmldsig-more#rsa-sha256 => RS256     http://www.w3.org/2001/04/xmldsig-more#hmac-sha256 => HS256 'value' is null. Gets or sets the that is used when setting the for claims in the extracted when validating a . The is set to the JSON claim 'name' after translating using this mapping. 'value is null. Gets or sets the that is used when creating a from (s). The JSON claim 'name' value is set to after translating using this mapping. This mapping is applied only when using or . Adding values directly will not result in translation. 'value is null. Gets or sets the used to filter claims when populating a claims form a . When a is validated, claims with types found in this will not be added to the . 'value' is null. Gets or sets the property name of the will contain the original JSON claim 'name' if a mapping occurred when the (s) were created. See for more information. if .IsIsNullOrWhiteSpace('value') is true. Gets or sets the property name of the will contain .Net type that was recogninzed when JwtPayload.Claims serialized the value to JSON. See for more information. if .IsIsNullOrWhiteSpace('value') is true. Returns 'true' which indicates this instance can validate a . Returns 'true', which indicates this instance can write . Gets and sets the token lifetime in minutes. 'value' less than 1. Gets and sets the maximum size in bytes, that a will be processed. 'value' less than 1. Gets or sets the for creating (s). This extensibility point can be used to insert custom (s). is called to obtain a (s) when needed. 'value' is null. Gets the supported by this handler. represents a collection of named sets of (s) that can be matched by a and return a that contains (s). Initializes a new instance of the class. Initializes a new instance of the class. Populates this instance with a named collection of (s) and an optional that will be called when a or cannot be resolved. A named collection of (s). A to call when resolving fails, before calling base. if 'keys' is null an empty collection will be created. A named collection of (s) can be added by accessing the property . Populates the from xml. xml for processing. 'nodeList' is null. Only (s) with == 'securityKey' will be processed. Unprocessed nodes will added to a list and can be accessed using the property. When processing xml in each that has = "securityKey' is passed here for processing. contains xml to map to a named . A single is expected with up to three attributes: {'expected values'}. <securityKey     symmetricKey {required}     name {required}     EncodingType or encodingType {optional} > </securityKey> If "EncodingType' type is specified only:     'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary'     'Base64Binary'     'base64Binary' are allowed and have the same meaning. When a symmetricKey is found, Convert.FromBase64String( value ) is applied to create the key. 'element' is null. attribute 'symmetricKey' is not found. value of 'symmetricKey' is empty or whitespace. attribute 'name' is not found. value of 'name' is empty or whitespace. value of 'encodingType' is not valid. Finds the first in a named collection that match the . The to resolve to a The resolved . If there is no match, then and 'base' are called in order. true if key resolved, false otherwise. Finds a named collection of (s) that match the and returns a that contains the (s). The to resolve to a The resolved . A can contain multiple (s). This method will return the named collection that matches the first If there is no match, then and 'base' are called in order. true is the keyIdentifier is resolved, false otherwise. Finds a named collection of (s) that match the and returns a that contains the (s). The to resolve to a The resolved . If there is no match, then and 'base' are called in order. true if token was resolved. if 'keyIdentifierClause' is null. Gets the named collection of (s). Gets or sets the to call when or fails to resolve, before calling base. 'value' is null. 'object.ReferenceEquals( this, value)' is true. Gets the unprocessed (s) from . processes only (s) that have the == 'securityKey'. Unprocessed (s) are accessible here. A that can be used to match . Initializes a new instance of the class. The 'name' for matching key identifiers found in the securityToken. Used to identify a named collection of keys. Additional information for matching. if 'name' is null or whitespace. if 'id' is null or whitespace Determines if a matches this instance. The to match. true if:     1. keyIdentifierClause is a .     2. string.Equals( keyIdentifierClause.Name, this.Name, StringComparison.Ordinal).     2. string.Equals( keyIdentifierClause.Id, this.Id, StringComparison.Ordinal). Otherwise calls base.Matches( keyIdentifierClause ). 'keyIdentifierClause' is null. Gets the name of the (s) this represents. A that contains multiple that have a name. Initializes a new instance of the class that contains a single . A name for the . the identifier for this token. A if 'name' is null or whitespace. if 'id' is null or whitespace. if 'key' is null. Initializes a new instance of the class that contains a (System.IdentityModel.Tokens.SecurityKey) that can be matched by name. the identifier for this token. A name for the (System.IdentityModel.Tokens.SecurityKey). A collection of if 'name' is null or whitespace. if 'id' is null or whitespace. if 'keys' is null. Gets the first that matches a the to match. The first that matches the . null if there is no match. Only are matched. 'keyIdentifierClause' is null. Answers if the is a match. The true if matched. A successful match occurs when == . Only are matched. 'keyIdentifierClause' is null. Gets the id of the security token. Gets the Name of the security token. Gets the creation time as a . The default is: . Gets the expiration time as a The default is: . Gets the (s). This exception is thrown when 'audience' of a token was not valid. Initializes a new instance of the class. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. A that represents the root cause of the exception. Initializes a new instance of the class. the that holds the serialized object data. The contextual information about the source or destination. This exception is thrown when 'issuer' of a token was not valid. Initializes a new instance of the class. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. A that represents the root cause of the exception. Initializes a new instance of the class. the that holds the serialized object data. The contextual information about the source or destination. This exception is thrown when 'lifetime' of a token was not valid. Initializes a new instance of the class. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. A that represents the root cause of the exception. Initializes a new instance of the class. the that holds the serialized object data. The contextual information about the source or destination. This exception is thrown when a security is missing an ExpirationTime. Initializes a new instance of the class. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. A that represents the root cause of the exception. Initializes a new instance of the class. the that holds the serialized object data. The contextual information about the source or destination. This exception is thrown when an add to the TokenReplayCache fails. Initializes a new instance of the class. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. A that represents the root cause of the exception. Initializes a new instance of the class. the that holds the serialized object data. The contextual information about the source or destination. This exception is thrown when a security token contained a key identifier but the key was not found by the runtime. Initializes a new instance of the class. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. Initializes a new instance of the class. Addtional information to be included in the exception and displayed to user. A that represents the root cause of the exception. Initializes a new instance of the class. the that holds the serialized object data. The contextual information about the source or destination. Creates s by specifying a and algorithm. Supports both and . This is the minimum .KeySize when creating signatures. This is the minimum .KeySize when verifying signatures. This is the minimum .KeySize when creating and verifying signatures. Creates a that supports the and algorithm. The to use for signing. The algorithm to use for signing. 'key' is null. 'algorithm' is null. 'algorithm' contains only whitespace. '' is smaller than . '' is smaller than . '' is not a or a . AsymmetricSignatureProviders require access to a PrivateKey for Signing. The . Returns a instance supports the and algorithm. The to use for signing. The algorithm to use for signing. 'key' is null. 'algorithm' is null. 'algorithm' contains only whitespace. '' is smaller than . '' is smaller than . '' is not a or a . The . When finished with a call this method for cleanup. The default behavior is to call to be released. Gets or sets the minimum .KeySize"/>. 'value' is smaller than . Gets or sets the minimum .KeySize for creating signatures. 'value' is smaller than . Gets or sets the minimum .KeySize for verifying signatures. 'value' is smaller than . Provides signing and verifying operations using a and specifying an algorithm. Initializes a new instance of the class that uses an to create and / or verify signatures over a array of bytes. The used for signing. The signature algorithm to use. 'key' is null. 'algorithm' is null. 'algorithm' contains only whitespace. '.KeySize' is smaller than . throws. returns null. throws. Produces a signature over the 'input' using the and 'algorithm' passed to . bytes to sign. signed bytes 'input' is null. 'input.Length' == 0. has been called. is null. This can occur if a derived type deletes it or does not create it. Verifies that a signature created over the 'input' matches the signature. Using and 'algorithm' passed to . bytes to verify. signature to compare against. true if computed signature matches the signature parameter, false otherwise. 'input' is null. 'signature' is null. 'input.Length' == 0. 'signature.Length' == 0. has been called. if the internal is null. This can occur if a derived type deletes it or does not create it. Disposes of internal components. true, if called from Dispose(), false, if invoked inside a finalizer. Compares two byte arrays for equality. Hash size is fixed normally it is 32 bytes. The attempt here is to take the same time if an attacker shortens the signature OR changes some of the signed contents. One set of bytes to compare. The other set of bytes to compare with. true if the bytes are equal, false otherwise. Definition for AudienceValidator. The audiences found in the . The being validated. required for validation. Definition for IssuerSigningKeyRetriever. When validating signatures, this method will return key to use. the representation of the token that is being validated. the that is being validated. It may be null. the found in the token. It may be null. required for validation. Definition for IssuerValidator. The issuer to validate. The that is being validated. required for validation. The issuer to use when creating the "Claim"(s) in a "ClaimsIdentity". Definition for LifetimeValidator. The 'notBefore' time found in the . The 'expiration' time found in the . The being validated. required for validation. Contains a set of parameters that are used by a when validating a . Default for the maximm token size. 2 MB (mega bytes). This is the fallback authenticationtype that a will use if nothing is set. Default for the clock skew. 300 seconds (5 minutes). Copy constructor for . Initializes a new instance of the class. Returns a new instance of with values copied from this object. A new object copied from this object This is a shallow Clone. Creates a using: 'NameClaimType' is calculated: If NameClaimTypeRetriever call that else use NameClaimType. If the result is a null or empty string, use . 'RoleClaimType' is calculated: If RoleClaimTypeRetriever call that else use RoleClaimType. If the result is a null or empty string, use . A with Authentication, NameClaimType and RoleClaimType set. Gets or sets a delegate that will be used to validate the audience of the tokens Gets or sets the AuthenticationType when creating a during token validation. if 'value' is null or whitespace. Gets or sets the for validating X509Certificate2(s). Gets or sets the that is to be used for decrypting inbound tokens. if 'value' is null. Gets or sets the clock skew to apply when validating times if 'value' is less than 0. Gets or sets the that is to be used for validating signed tokens. Gets or sets the that is to be used for validating signed tokens. Gets or sets a delegate that will be used to retreive (s) used for checking signatures. Each will be used to check the signature. Returning multiple key can be helpful when the does not contain a key identifier. This can occur when the issuer has multiple keys available. This sometimes occurs during key rollover. Gets or sets the that are to be used for validating signed tokens. Gets or sets the that is used for validating signed tokens. Gets or sets the that are to be used for validating signed tokens. Gets or sets a delegate that will be used to validate the issuer of the token. The delegate returns the issuer to use. Gets or sets a delegate that will be used to validate the lifetime of the token Gets or sets the passed to . Controls the value returns. It will return the first where the equals . Gets or sets the passed to . Controls the (s) returned from . Each returned will have a equal to . Gets or sets a delegate that will be called to obtain the NameClaimType to use when creating a ClaimsIdentity when validating a token. Gets or sets a value indicating whether tokens must have an 'expiration' value. Gets or sets a value indicating whether a can be valid if not signed. Gets or sets a delegate that will be called to obtain the RoleClaimType to use when creating a ClaimsIdentity when validating a token. Gets or sets a boolean to control if the original token is saved when a session is created. /// The SecurityTokenValidator will use this value to save the orginal string that was validated. Gets or set the that will be checked to help in detecting that a token has been 'seen' before. Gets or sets a value indicating whether the should be validated. Gets or sets a boolean to control if the audience will be validated during token validation. Gets or sets a boolean to control if the issuer will be validated during token validation. Gets or sets a boolean to control if the lifetime will be validated during token validation. Gets or sets a boolean that controls if validation of the that signed the securityToken is called. Gets or sets a string that represents a valid audience that will be used during token validation. Gets or sets the that contains valid audiences that will be used during token validation. Gets or sets a that represents a valid issuer that will be used during token validation. Gets or sets the that contains valid issuers that will be used during token validation. AudienceValidator Determines if the audiences found in a are valid. The audiences found in the . The being validated. required for validation. if 'vaidationParameters' is null. if 'audiences' is null and is true. if is null or whitespace and is null. if none of the 'audiences' matched either or one of . An EXACT match is required. Determines if an issuer found in a is valid. The issuer to validate The that is being validated. required for validation. The issuer to use when creating the "Claim"(s) in a "ClaimsIdentity". if 'vaidationParameters' is null. if 'issuer' is null or whitespace and is true. if is null or whitespace and is null. if 'issuer' failed to matched either or one of . An EXACT match is required. Validates the that signed a . The that signed the . The being validated. required for validation. if 'vaidationParameters' is null. Validates the lifetime of a . The 'notBefore' time found in the . The 'expiration' time found in the . The being validated. required for validation. if 'vaidationParameters' is null. if 'expires.HasValue' is false and is true. if 'notBefore' is > 'expires'. if 'notBefore' is > DateTime.UtcNow. if 'expires' is < DateTime.UtcNow. All time comparisons apply . Validates if a token has been replayed. The being validated. When does the security token expire. required for validation. if 'securityToken' is null or whitespace. if 'validationParameters' is null or whitespace. if is not null and expirationTime.HasValue is false. When a TokenReplayCache is set, tokens require an expiration time. if the 'securityToken' is found in the cache. if the 'securityToken' could not be added to the . Defines constants needed from WS-Security 1.0. Defines constants needed from WS-SecureUtility standard schema. This class also resets the chainPolicy.VerificationTime = DateTime.Now each time a certificate is validated otherwise certificates created after the validator is created will not chain. Initializes a new instance of the class. The certificate validation mode. The revocation mode. The trusted store location. thrown if the certificationValidationMode is custom or unknown. Validates a . The to validate. Security key that allows access to cert Instantiates a using a cert to use. Gets the . ================================================ FILE: packages/repositories.config ================================================