Random
@@ -465,4 +465,10 @@
[ISNOTINROLE:XXX]Some Text[/ISNOTINROLE:XXX] where XXX is not in the role name.
+
+ Select a mode, Public or Private to show also private albums
+
+
+ Public Mode
+
\ No newline at end of file
diff --git a/Backup/01.00.00.SqlDataProvider b/Backup/01.00.00.SqlDataProvider
new file mode 100644
index 0000000..18d8a81
--- /dev/null
+++ b/Backup/01.00.00.SqlDataProvider
@@ -0,0 +1,117 @@
+CREATE TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo (
+ [PhotoID] [int] IDENTITY (1, 1) NOT NULL ,
+ [ModuleID] [int] NOT NULL ,
+ [Name] [nvarchar] (100) NOT NULL ,
+ [Description] [nvarchar] (255) NULL ,
+ [FileName] [nvarchar] (255) NOT NULL ,
+ [DateCreated] [datetime] NOT NULL ,
+ [Width] [int] NOT NULL ,
+ [Height] [int] NOT NULL
+) ON [PRIMARY]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo ADD
+ CONSTRAINT [PK_{objectQualifier}DnnForge_SimpleGallery_Photo] PRIMARY KEY CLUSTERED
+ (
+ [PhotoID]
+ ) ON [PRIMARY]
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ [PhotoID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height]
+FROM {objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int
+AS
+
+SELECT
+ [PhotoID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height]
+FROM {objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [ModuleID] = @ModuleID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+ @ModuleID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int
+AS
+
+INSERT INTO {objectQualifier}DnnForge_SimpleGallery_Photo (
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height]
+) VALUES (
+ @ModuleID,
+ @Name,
+ @Description,
+ @FileName,
+ @DateCreated,
+ @Width,
+ @Height
+)
+
+select SCOPE_IDENTITY()
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+ @PhotoID int,
+ @ModuleID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int
+AS
+
+UPDATE {objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [ModuleID] = @ModuleID,
+ [Name] = @Name,
+ [Description] = @Description,
+ [FileName] = @FileName,
+ [DateCreated] = @DateCreated,
+ [Width] = @Width,
+ [Height] = @Height
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoDelete
+ @PhotoID int
+AS
+
+DELETE FROM {objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [PhotoID] = @PhotoID
+GO
diff --git a/Backup/01.02.00.SqlDataProvider b/Backup/01.02.00.SqlDataProvider
new file mode 100644
index 0000000..5bb2a06
--- /dev/null
+++ b/Backup/01.02.00.SqlDataProvider
@@ -0,0 +1,233 @@
+CREATE TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album (
+ [AlbumID] [int] IDENTITY (1, 1) NOT NULL ,
+ [ModuleID] [int] NOT NULL ,
+ [Caption] [nvarchar] (255) NOT NULL ,
+ [IsPublic] [bit] NOT NULL,
+ [HomeDirectory] [nvarchar] (255) NOT NULL
+) ON [PRIMARY]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album ADD
+ CONSTRAINT [DF_{objectQualifier}DnnForge_SimpleGallery_Album_IsPublic] DEFAULT (0) FOR [IsPublic],
+ CONSTRAINT [PK_{objectQualifier}DnnForge_SimpleGallery_Album] PRIMARY KEY CLUSTERED
+ (
+ [AlbumID]
+ ) ON [PRIMARY]
+GO
+
+INSERT INTO {databaseOwner}{objectQualifier}dnnforge_simplegallery_album(ModuleID, Caption, IsPublic, HomeDirectory)
+SELECT DISTINCT ModuleID, 'Unsorted' as 'Caption', 1 as 'IsPublic', 'Gallery/' + convert(nvarchar(255), ModuleID) as 'HomeDirectory' FROM {databaseOwner}{objectQualifier}dnnforge_simplegallery_photo
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo ADD
+ AlbumID int NULL
+GO
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+SET AlbumID = (Select AlbumID from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album.ModuleID = {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo.ModuleID)
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+ @AlbumID int
+AS
+
+SELECT
+ [AlbumID],
+ [ModuleID],
+ [Caption],
+ [IsPublic],
+ [HomeDirectory]
+FROM {objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ShowPublicOnly bit
+AS
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+ @ModuleID int,
+ @Caption nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255)
+AS
+
+INSERT INTO {objectQualifier}DnnForge_SimpleGallery_Album (
+ [ModuleID],
+ [Caption],
+ [IsPublic],
+ [HomeDirectory]
+) VALUES (
+ @ModuleID,
+ @Caption,
+ @IsPublic,
+ @HomeDirectory
+)
+
+select SCOPE_IDENTITY()
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @Caption nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255)
+AS
+
+UPDATE {objectQualifier}DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [Caption] = @Caption,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumDelete
+ @AlbumID int
+AS
+
+DELETE FROM {objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int
+AS
+
+SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Album.[HomeDirectory]
+FROM {objectQualifier}DnnForge_SimpleGallery_Photo Photo, {objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Photo.[AlbumID] = Album.[AlbumID]
+ AND
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @AlbumID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Album.[HomeDirectory]
+FROM {objectQualifier}DnnForge_SimpleGallery_Photo Photo, {objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Photo.[AlbumID] = Album.[AlbumID]
+ AND
+ Photo.[AlbumID] = @AlbumID
+ORDER BY
+ Photo.[Name]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int
+AS
+
+INSERT INTO {objectQualifier}DnnForge_SimpleGallery_Photo (
+ [ModuleID],
+ [AlbumID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height]
+) VALUES (
+ @ModuleID,
+ @AlbumID,
+ @Name,
+ @Description,
+ @FileName,
+ @DateCreated,
+ @Width,
+ @Height
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+ @PhotoID int,
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int
+AS
+
+UPDATE {objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [ModuleID] = @ModuleID,
+ [AlbumID] = @AlbumID,
+ [Name] = @Name,
+ [Description] = @Description,
+ [FileName] = @FileName,
+ [DateCreated] = @DateCreated,
+ [Width] = @Width,
+ [Height] = @Height
+WHERE
+ [PhotoID] = @PhotoID
+GO
diff --git a/Backup/01.05.00.SqlDataProvider b/Backup/01.05.00.SqlDataProvider
new file mode 100644
index 0000000..22d7a28
--- /dev/null
+++ b/Backup/01.05.00.SqlDataProvider
@@ -0,0 +1,282 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album ADD
+ ParentAlbumID int NOT NULL Default -1,
+ Description nvarchar(255) NULL,
+ Password nvarchar(50) NULL
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo ADD
+ IsDefault bit NOT NULL Default 0
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+ @AlbumID int
+AS
+
+SELECT
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password]
+FROM {objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int
+AS
+
+SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Album.[HomeDirectory]
+FROM {objectQualifier}DnnForge_SimpleGallery_Photo Photo, {objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Photo.[AlbumID] = Album.[AlbumID]
+ AND
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @AlbumID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Album.[HomeDirectory]
+FROM {objectQualifier}DnnForge_SimpleGallery_Photo Photo, {objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Photo.[AlbumID] = Album.[AlbumID]
+ AND
+ Photo.[AlbumID] = @AlbumID
+ORDER BY
+ Photo.[Name]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int
+AS
+
+SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [AlbumID] = @AlbumID
+ORDER BY
+ [IsDefault] DESC
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_SetDefaultPhoto
+ @PhotoID int,
+ @AlbumID int
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [IsDefault] = 0
+WHERE
+ [AlbumID] = @AlbumID
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [IsDefault] = 1
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @current int,
+ @ShowPublicOnly bit
+as
+SET NOCOUNT ON
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@current, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@current, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, #hierarchy
+WHERE
+ #hierarchy.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+drop table #hierarchy
+drop table #stack
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50)
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album (
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password]
+) VALUES (
+ @ModuleID,
+ @ParentAlbumID,
+ @Caption,
+ @Description,
+ @IsPublic,
+ @HomeDirectory,
+ @Password
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50)
+AS
+
+UPDATE DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [ParentAlbumID] = @ParentAlbumID,
+ [Caption] = @Caption,
+ [Description] = @Description,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory,
+ [Password] = @Password
+WHERE
+ [AlbumID] = @AlbumID
+GO
diff --git a/Backup/01.05.01.SqlDataProvider b/Backup/01.05.01.SqlDataProvider
new file mode 100644
index 0000000..a9221fb
--- /dev/null
+++ b/Backup/01.05.01.SqlDataProvider
@@ -0,0 +1,99 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ ORDER BY
+ [IsDefault] DESC
+END
+ELSE
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
diff --git a/Backup/01.06.00.SqlDataProvider b/Backup/01.06.00.SqlDataProvider
new file mode 100644
index 0000000..76ab416
--- /dev/null
+++ b/Backup/01.06.00.SqlDataProvider
@@ -0,0 +1,65 @@
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
diff --git a/Backup/01.06.01.SqlDataProvider b/Backup/01.06.01.SqlDataProvider
new file mode 100644
index 0000000..b7e2559
--- /dev/null
+++ b/Backup/01.06.01.SqlDataProvider
@@ -0,0 +1,10 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+
+GO
diff --git a/Backup/01.06.02.SqlDataProvider b/Backup/01.06.02.SqlDataProvider
new file mode 100644
index 0000000..135c251
--- /dev/null
+++ b/Backup/01.06.02.SqlDataProvider
@@ -0,0 +1,25 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50)
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [ParentAlbumID] = @ParentAlbumID,
+ [Caption] = @Caption,
+ [Description] = @Description,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory,
+ [Password] = @Password
+WHERE
+ [AlbumID] = @AlbumID
+GO
diff --git a/Backup/01.07.00.SqlDataProvider b/Backup/01.07.00.SqlDataProvider
new file mode 100644
index 0000000..f88a896
--- /dev/null
+++ b/Backup/01.07.00.SqlDataProvider
@@ -0,0 +1,42 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Count([Photo].[PhotoID]) AS NumberOfPhotos,
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo ON Album.AlbumID = Photo.AlbumID
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+GROUP BY
+ Album.[Caption],
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password]
+ORDER BY
+ Album.[Caption]
+GO
diff --git a/Backup/01.08.00.SqlDataProvider b/Backup/01.08.00.SqlDataProvider
new file mode 100644
index 0000000..09d94db
--- /dev/null
+++ b/Backup/01.08.00.SqlDataProvider
@@ -0,0 +1,404 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo ADD
+ AuthorID int NULL,
+ ApproverID int NULL,
+ IsApproved bit NOT NULL CONSTRAINT DF_{objectQualifier}DnnForge_SimpleGallery_Photo_IsApproved DEFAULT 1,
+ DateApproved datetime NULL
+GO
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+SET
+ AuthorID = (SELECT AdministratorID from {databaseOwner}{objectQualifier}Modules modules, {databaseOwner}{objectQualifier}Portals portals where {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo.ModuleID = modules.ModuleID and modules.PortalID = portals.PortalID)
+WHERE
+ (SELECT COUNT(*) from {databaseOwner}{objectQualifier}Modules modules, {databaseOwner}{objectQualifier}Portals portals where {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo.ModuleID = modules.ModuleID and modules.PortalID = portals.PortalID) > 0
+GO
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+SET
+ ApproverID = (SELECT AdministratorID from {databaseOwner}{objectQualifier}Modules modules, {databaseOwner}{objectQualifier}Portals portals where {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo.ModuleID = modules.ModuleID and modules.PortalID = portals.PortalID)
+WHERE
+ (SELECT COUNT(*) from {databaseOwner}{objectQualifier}Modules modules, {databaseOwner}{objectQualifier}Portals portals where {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo.ModuleID = modules.ModuleID and modules.PortalID = portals.PortalID) > 0
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ ORDER BY
+ [IsDefault] DESC
+END
+ELSE
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Album.[HomeDirectory],
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @AlbumID int,
+ @IsApproved bit
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Album.[HomeDirectory],
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[IsApproved] = @IsApproved
+ORDER BY
+ Photo.[Name]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime
+AS
+
+INSERT INTO {objectQualifier}DnnForge_SimpleGallery_Photo (
+ [ModuleID],
+ [AlbumID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved]
+) VALUES (
+ @ModuleID,
+ @AlbumID,
+ @Name,
+ @Description,
+ @FileName,
+ @DateCreated,
+ @Width,
+ @Height,
+ @AuthorID,
+ @ApproverID,
+ @IsApproved,
+ @DateApproved
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+ @PhotoID int,
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime
+AS
+
+UPDATE {objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [ModuleID] = @ModuleID,
+ [AlbumID] = @AlbumID,
+ [Name] = @Name,
+ [Description] = @Description,
+ [FileName] = @FileName,
+ [DateCreated] = @DateCreated,
+ [Width] = @Width,
+ [Height] = @Height,
+ [AuthorID] = @AuthorID,
+ [ApproverID] = @ApproverID,
+ [IsApproved] = @IsApproved,
+ [DateApproved] = @DateApproved
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Count([Photo].[PhotoID]) AS NumberOfPhotos,
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo ON Album.AlbumID = Photo.AlbumID
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ AND
+ (Photo.IsApproved is null or Photo.IsApproved = 1)
+GROUP BY
+ Album.[Caption],
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password]
+ORDER BY
+ Album.[Caption]
+GO
diff --git a/Backup/01.08.01.SqlDataProvider b/Backup/01.08.01.SqlDataProvider
new file mode 100644
index 0000000..d673e63
--- /dev/null
+++ b/Backup/01.08.01.SqlDataProvider
@@ -0,0 +1,129 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int,
+ @Count int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Album.[HomeDirectory],
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ Photo.[IsApproved] = @IsApproved
+ORDER BY
+ Photo.[Name]
+GO
diff --git a/Backup/01.08.02.SqlDataProvider b/Backup/01.08.02.SqlDataProvider
new file mode 100644
index 0000000..4b06156
--- /dev/null
+++ b/Backup/01.08.02.SqlDataProvider
@@ -0,0 +1,7 @@
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+SET
+ DateApproved = DateCreated
+WHERE
+ DateApproved is null and IsApproved = 1
+GO
diff --git a/Backup/01.08.03.SqlDataProvider b/Backup/01.08.03.SqlDataProvider
new file mode 100644
index 0000000..7a76eb5
--- /dev/null
+++ b/Backup/01.08.03.SqlDataProvider
@@ -0,0 +1,53 @@
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Album.[HomeDirectory],
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ORDER BY
+ Photo.[Name]
+GO
diff --git a/Backup/01.08.04.SqlDataProvider b/Backup/01.08.04.SqlDataProvider
new file mode 100644
index 0000000..79f981a
--- /dev/null
+++ b/Backup/01.08.04.SqlDataProvider
@@ -0,0 +1,93 @@
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ORDER BY
+ Photo.[Name]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ [PhotoID] = @PhotoID
+GO
diff --git a/Backup/01.09.01.SqlDataProvider b/Backup/01.09.01.SqlDataProvider
new file mode 100644
index 0000000..bab8948
--- /dev/null
+++ b/Backup/01.09.01.SqlDataProvider
@@ -0,0 +1,100 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ ORDER BY
+ [IsDefault] DESC, NewID()
+END
+ELSE
+BEGIN
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+END
+GO
diff --git a/Backup/01.09.02.SqlDataProvider b/Backup/01.09.02.SqlDataProvider
new file mode 100644
index 0000000..6ff925d
--- /dev/null
+++ b/Backup/01.09.02.SqlDataProvider
@@ -0,0 +1,135 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ Album.[Caption]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ AND
+ [IsApproved] = 1
+ ORDER BY
+ [IsDefault] DESC, NewID()
+END
+ELSE
+BEGIN
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+END
+GO
diff --git a/Backup/01.09.03.SqlDataProvider b/Backup/01.09.03.SqlDataProvider
new file mode 100644
index 0000000..dc125b3
--- /dev/null
+++ b/Backup/01.09.03.SqlDataProvider
@@ -0,0 +1,192 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album ADD
+ AlbumOrder int NOT NULL CONSTRAINT DF_{objectQualifier}DnnForge_SimpleGallery_Album_AlbumOrder DEFAULT 0
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit
+AS
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ Album.[AlbumOrder], Album.[Caption]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [ParentAlbumID] = @ParentAlbumID,
+ [Caption] = @Caption,
+ [Description] = @Description,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory,
+ [Password] = @Password,
+ [AlbumOrder] = @AlbumOrder
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+ @AlbumID int
+AS
+
+SELECT
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder]
+FROM {objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @current int,
+ @ShowPublicOnly bit
+as
+SET NOCOUNT ON
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@current, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@current, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY AlbumOrder desc, Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, #hierarchy
+WHERE
+ #hierarchy.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+drop table #hierarchy
+drop table #stack
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album (
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder]
+) VALUES (
+ @ModuleID,
+ @ParentAlbumID,
+ @Caption,
+ @Description,
+ @IsPublic,
+ @HomeDirectory,
+ @Password,
+ @AlbumOrder
+)
+
+select SCOPE_IDENTITY()
+GO
diff --git a/Backup/01.09.04.SqlDataProvider b/Backup/01.09.04.SqlDataProvider
new file mode 100644
index 0000000..d7cdff6
--- /dev/null
+++ b/Backup/01.09.04.SqlDataProvider
@@ -0,0 +1,2 @@
+DELETE FROM {databaseOwner}{objectQualifier}ModuleDefinitions WHERE FriendlyName = 'Simple Gallery'
+GO
diff --git a/Backup/01.09.05.SqlDataProvider b/Backup/01.09.05.SqlDataProvider
new file mode 100644
index 0000000..6f11c56
--- /dev/null
+++ b/Backup/01.09.05.SqlDataProvider
@@ -0,0 +1,377 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo ADD
+ DateUpdated DateTime NULL
+GO
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo SET DateUpdated = DateCreated
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved],
+ [DateUpdated]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ AND
+ [IsApproved] = 1
+ ORDER BY
+ [IsDefault] DESC, NewID()
+END
+ELSE
+BEGIN
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+END
+GO
+
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ORDER BY
+ Photo.[Name]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName'
+FROM
+ {objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int,
+ @Count int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
+
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime,
+ @DateUpdated DateTime
+AS
+
+INSERT INTO {objectQualifier}DnnForge_SimpleGallery_Photo (
+ [ModuleID],
+ [AlbumID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved],
+ [DateUpdated]
+) VALUES (
+ @ModuleID,
+ @AlbumID,
+ @Name,
+ @Description,
+ @FileName,
+ @DateCreated,
+ @Width,
+ @Height,
+ @AuthorID,
+ @ApproverID,
+ @IsApproved,
+ @DateApproved,
+ @DateUpdated
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+ @PhotoID int,
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description nvarchar(255),
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime,
+ @DateUpdated DateTime
+AS
+
+UPDATE {objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [ModuleID] = @ModuleID,
+ [AlbumID] = @AlbumID,
+ [Name] = @Name,
+ [Description] = @Description,
+ [FileName] = @FileName,
+ [DateCreated] = @DateCreated,
+ [Width] = @Width,
+ [Height] = @Height,
+ [AuthorID] = @AuthorID,
+ [ApproverID] = @ApproverID,
+ [IsApproved] = @IsApproved,
+ [DateApproved] = @DateApproved,
+ [DateUpdated] = @DateUpdated
+WHERE
+ [PhotoID] = @PhotoID
+GO
diff --git a/Backup/02.00.00.SqlDataProvider b/Backup/02.00.00.SqlDataProvider
new file mode 100644
index 0000000..f068fe1
--- /dev/null
+++ b/Backup/02.00.00.SqlDataProvider
@@ -0,0 +1,66 @@
+CREATE TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Template (
+ [TemplateID] [int] IDENTITY (1, 1) NOT NULL ,
+ [ModuleID] [int] NOT NULL ,
+ [Name] [nvarchar] (255) NOT NULL ,
+ [Template] [ntext] NOT NULL
+) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Template ADD
+ CONSTRAINT [PK_{objectQualifier}DnnForge_SimpleGallery_Template] PRIMARY KEY CLUSTERED
+ (
+ [TemplateID]
+ ) ON [PRIMARY]
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TemplateGet
+ @ModuleID int,
+ @Name nvarchar(255)
+AS
+
+SELECT
+ [TemplateID],
+ [ModuleID],
+ [Name],
+ [Template]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Template
+WHERE
+ [ModuleID] = @ModuleID
+ and
+ [Name] = @Name
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TemplateAdd
+ @ModuleID int,
+ @Name nvarchar(255),
+ @Template ntext
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Template (
+ [ModuleID],
+ [Name],
+ [Template]
+) VALUES (
+ @ModuleID,
+ @Name,
+ @Template
+)
+
+select SCOPE_IDENTITY()
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TemplateUpdate
+ @TemplateID int,
+ @ModuleID int,
+ @Name nvarchar(255),
+ @Template ntext
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Template SET
+ [ModuleID] = @ModuleID,
+ [Name] = @Name,
+ [Template] = @Template
+WHERE
+ [TemplateID] = @TemplateID
+GO
+
diff --git a/Backup/02.01.02.SqlDataProvider b/Backup/02.01.02.SqlDataProvider
new file mode 100644
index 0000000..5db8565
--- /dev/null
+++ b/Backup/02.01.02.SqlDataProvider
@@ -0,0 +1,139 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ ADD Description2 ntext
+GO
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+SET
+ Description2 = Description
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ DROP COLUMN [Description]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ ADD [Description] ntext
+GO
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+SET
+ [Description] = Description2
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ DROP COLUMN [Description2]
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description ntext,
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime,
+ @DateUpdated DateTime
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo (
+ [ModuleID],
+ [AlbumID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved],
+ [DateUpdated]
+) VALUES (
+ @ModuleID,
+ @AlbumID,
+ @Name,
+ @Description,
+ @FileName,
+ @DateCreated,
+ @Width,
+ @Height,
+ @AuthorID,
+ @ApproverID,
+ @IsApproved,
+ @DateApproved,
+ @DateUpdated
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+ @PhotoID int,
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description ntext,
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime,
+ @DateUpdated DateTime
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [ModuleID] = @ModuleID,
+ [AlbumID] = @AlbumID,
+ [Name] = @Name,
+ [Description] = @Description,
+ [FileName] = @FileName,
+ [DateCreated] = @DateCreated,
+ [Width] = @Width,
+ [Height] = @Height,
+ [AuthorID] = @AuthorID,
+ [ApproverID] = @ApproverID,
+ [IsApproved] = @IsApproved,
+ [DateApproved] = @DateApproved,
+ [DateUpdated] = @DateUpdated
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGetByPath
+ @ModuleID int,
+ @HomeDirectory nvarchar(255)
+AS
+
+SELECT TOP 1
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [ModuleID] = @ModuleID
+ and
+ [HomeDirectory] = @HomeDirectory
+GO
diff --git a/Backup/02.01.05.SqlDataProvider b/Backup/02.01.05.SqlDataProvider
new file mode 100644
index 0000000..6f5215e
--- /dev/null
+++ b/Backup/02.01.05.SqlDataProvider
@@ -0,0 +1,187 @@
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved],
+ [DateUpdated]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ AND
+ [IsApproved] = 1
+ ORDER BY
+ [IsDefault] DESC, NewID()
+END
+ELSE
+BEGIN
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ [IsDefault] DESC, newID()
+
+drop table #hierarchy
+drop table #stack
+END
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int,
+ @Count int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ a.[IsPublic] = 1
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
+
diff --git a/Backup/02.02.00.SqlDataProvider b/Backup/02.02.00.SqlDataProvider
new file mode 100644
index 0000000..10a66f3
--- /dev/null
+++ b/Backup/02.02.00.SqlDataProvider
@@ -0,0 +1,435 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo ADD
+ BatchID nvarchar(50) NULL
+GO
+
+CREATE TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag (
+ [TagID] [int] IDENTITY (1, 1) NOT NULL ,
+ [ModuleID] [int] NOT NULL ,
+ [Name] [nvarchar] (50) NOT NULL ,
+ [NameLowered] [nvarchar] (50) NOT NULL ,
+ [Usages] [int] NOT NULL
+) ON [PRIMARY]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag ADD
+ CONSTRAINT [DF_{objectQualifier}DnnForge_SimpleGallery_Tag_Usages] DEFAULT (0) FOR [Usages],
+ CONSTRAINT [PK_{objectQualifier}DnnForge_SimpleGallery_Tag] PRIMARY KEY CLUSTERED
+ (
+ [TagID]
+ ) ON [PRIMARY]
+GO
+
+CREATE TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag (
+ [PhotoID] [int] NOT NULL ,
+ [TagID] [int] NOT NULL
+) ON [PRIMARY]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag ADD
+ CONSTRAINT [PK_{objectQualifier}DnnForge_SimpleGallery_PhotoTag] PRIMARY KEY CLUSTERED
+ (
+ [PhotoID],
+ [TagID]
+ ) ON [PRIMARY]
+GO
+
+CREATE FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(@PhotoID int)
+RETURNS nvarchar(1000)
+AS
+ BEGIN
+
+ DECLARE @p_str nvarchar(1000)
+ SET @p_str = ''
+
+ SELECT @p_str = @p_str + ' ' + CAST(t.[Name] AS VARCHAR(50))
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt
+ WHERE t.TagID = pt.TagID and pt.PhotoID = @PhotoID
+
+ RETURN LTRIM(@p_str)
+
+END
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagAdd
+ @PhotoID int,
+ @TagID int
+AS
+
+INSERT INTO
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag(PhotoID, TagID)
+VALUES(@PhotoID, @TagID)
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+SET
+ Usages = (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt where pt.TagID = @TagID)
+WHERE
+ TagID = @TagID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagDelete
+ @PhotoID int
+AS
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+SET
+ Usages = Usages - 1
+WHERE
+ TagID in (SELECT pt.TagID from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt where PhotoID = @PhotoID)
+
+DELETE FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+WHERE Usages = 0
+
+DELETE FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag
+WHERE PhotoID = @PhotoID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagDeleteByTag
+ @TagID int
+AS
+
+DELETE FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag
+WHERE TagID = @TagID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagAdd
+ @ModuleID int,
+ @Name nvarchar(50),
+ @NameLowered nvarchar(50)
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag (
+ [ModuleID],
+ [Name],
+ [NameLowered]
+) VALUES (
+ @ModuleID,
+ @Name,
+ @NameLowered
+)
+
+select SCOPE_IDENTITY()
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagDelete
+ @TagID int
+AS
+
+exec {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagDeleteByTag @TagID
+
+DELETE FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+WHERE
+ [TagID] = @TagID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagGet
+ @TagID int
+AS
+
+SELECT
+ [TagID],
+ [ModuleID],
+ [Name],
+ [NameLowered],
+ [Usages]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+WHERE
+ [TagID] = @TagID
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagGetByName
+ @ModuleID int,
+ @NameLowered nvarchar(50)
+AS
+
+SELECT TOP 1
+ [TagID],
+ [ModuleID],
+ [Name],
+ [NameLowered],
+ [Usages]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+WHERE
+ [ModuleID] = @ModuleID
+ and
+ [NameLowered] = @NameLowered
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagList
+ @ModuleID int,
+ @AlbumID int,
+ @MaxCount int
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ t.[TagID],
+ t.[ModuleID],
+ t.[Name],
+ t.[NameLowered],
+ t.[Usages]
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t
+WHERE
+ t.[ModuleID] = @ModuleID
+ AND
+ (@AlbumID is null OR t.[TagID] in (SELECT pt.[TagID] FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p WHERE p.[PhotoID] = pt.[PhotoID] AND pt.[TagID] = t.[TagID] AND p.[AlbumID] = @AlbumID))
+ORDER BY
+ t.[Usages] DESC
+
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagUpdate
+ @TagID int,
+ @ModuleID int,
+ @Name nvarchar(50),
+ @NameLowered nvarchar(50),
+ @Usages int
+AS
+
+UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+SET
+ [ModuleID] = @ModuleID,
+ [Name] = @Name,
+ [NameLowered] = @NameLowered,
+ [Usages] = @Usages
+WHERE
+ [TagID] = @TagID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description ntext,
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime,
+ @DateUpdated DateTime,
+ @BatchID nvarchar(50)
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo (
+ [ModuleID],
+ [AlbumID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved],
+ [DateUpdated],
+ [BatchID]
+) VALUES (
+ @ModuleID,
+ @AlbumID,
+ @Name,
+ @Description,
+ @FileName,
+ @DateCreated,
+ @Width,
+ @Height,
+ @AuthorID,
+ @ApproverID,
+ @IsApproved,
+ @DateApproved,
+ @DateUpdated,
+ @BatchID
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+ @PhotoID int,
+ @ModuleID int,
+ @AlbumID int,
+ @Name nvarchar(100),
+ @Description ntext,
+ @FileName nvarchar(255),
+ @DateCreated datetime,
+ @Width int,
+ @Height int,
+ @AuthorID int,
+ @ApproverID int,
+ @IsApproved bit,
+ @DateApproved DateTime,
+ @DateUpdated DateTime,
+ @BatchID nvarchar(50)
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo SET
+ [ModuleID] = @ModuleID,
+ [AlbumID] = @AlbumID,
+ [Name] = @Name,
+ [Description] = @Description,
+ [FileName] = @FileName,
+ [DateCreated] = @DateCreated,
+ [Width] = @Width,
+ [Height] = @Height,
+ [AuthorID] = @AuthorID,
+ [ApproverID] = @ApproverID,
+ [IsApproved] = @IsApproved,
+ [DateApproved] = @DateApproved,
+ [DateUpdated] = @DateUpdated,
+ [BatchID] = @BatchID
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoDelete
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoDelete
+ @PhotoID int
+AS
+
+exec {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagDelete @PhotoID
+
+DELETE FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+ @PhotoID int
+AS
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Photo.[BatchID],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(Photo.[PhotoID]) as 'Tags'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ [PhotoID] = @PhotoID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit,
+ @TagID int,
+ @BatchID nvarchar(50),
+ @SortBy int,
+ @SortOrder int
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Photo.[BatchID],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(Photo.[PhotoID]) as 'Tags'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND Photo.PhotoID = pt.PhotoID))
+ AND
+ (@BatchID is null or Photo.[BatchID] = @BatchID)
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 0 THEN Photo.[FileName]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 1 THEN Photo.[FileName]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Photo.[DateApproved]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Photo.[DateApproved]
+ END ASC
+GO
diff --git a/Backup/02.02.06.SqlDataProvider b/Backup/02.02.06.SqlDataProvider
new file mode 100644
index 0000000..5aca371
--- /dev/null
+++ b/Backup/02.02.06.SqlDataProvider
@@ -0,0 +1,139 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagList
+ @ModuleID int,
+ @AlbumID int,
+ @MaxCount int,
+ @ShowAPprovedOnly bit
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ t.[TagID],
+ t.[ModuleID],
+ t.[Name],
+ t.[NameLowered],
+ t.[Usages]
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t
+WHERE
+ t.[ModuleID] = @ModuleID
+ AND
+ (@AlbumID is null OR t.[TagID] in (SELECT pt.[TagID] FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p WHERE p.[PhotoID] = pt.[PhotoID] AND pt.[TagID] = t.[TagID] AND p.[AlbumID] = @AlbumID AND p.[IsApproved] = 1))
+ AND
+ (@ShowApprovedOnly = 0 OR t.[TagID] in (SELECT pt.[TagID] FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p WHERE p.[PhotoID] = pt.[PhotoID] AND pt.[TagID] = t.[TagID] AND p.[IsApproved] = 1))
+ORDER BY
+ t.[Usages] DESC
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+ @AlbumID int,
+ @ModuleID int
+AS
+
+IF (SELECT count(PhotoID) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo WHERE AlbumID = @AlbumID) > 0
+BEGIN
+ SELECT TOP 1
+ [PhotoID],
+ [AlbumID],
+ [ModuleID],
+ [Name],
+ [Description],
+ [FileName],
+ [DateCreated],
+ [Width],
+ [Height],
+ [IsDefault],
+ [AuthorID],
+ [ApproverID],
+ [IsApproved],
+ [DateApproved],
+ [DateUpdated]
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+ WHERE
+ [AlbumID] = @AlbumID
+ AND
+ [IsApproved] = 1
+ ORDER BY
+ [IsDefault] DESC, NewID()
+END
+ELSE
+BEGIN
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+ SELECT TOP 1
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ a.[IsPublic] = 1
+ AND
+ p.[IsApproved] = 1
+ ORDER BY
+ [IsDefault] DESC, newID()
+
+drop table #hierarchy
+drop table #stack
+END
+GO
diff --git a/Backup/02.03.00.SqlDataProvider b/Backup/02.03.00.SqlDataProvider
new file mode 100644
index 0000000..8f90969
--- /dev/null
+++ b/Backup/02.03.00.SqlDataProvider
@@ -0,0 +1,81 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit,
+ @TagID int,
+ @BatchID nvarchar(50),
+ @SortBy int,
+ @SortOrder int
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Photo.[BatchID],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(Photo.[PhotoID]) as 'Tags'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND Photo.PhotoID = pt.PhotoID))
+ AND
+ (@BatchID is null or Photo.[BatchID] =@BatchID)
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 0 THEN Photo.[FileName]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 1 THEN Photo.[FileName]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Photo.[DateApproved]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Photo.[DateApproved]
+ END ASC
+GO
diff --git a/Backup/02.03.01.SqlDataProvider b/Backup/02.03.01.SqlDataProvider
new file mode 100644
index 0000000..8f90969
--- /dev/null
+++ b/Backup/02.03.01.SqlDataProvider
@@ -0,0 +1,81 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit,
+ @TagID int,
+ @BatchID nvarchar(50),
+ @SortBy int,
+ @SortOrder int
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Photo.[BatchID],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(Photo.[PhotoID]) as 'Tags'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND Photo.PhotoID = pt.PhotoID))
+ AND
+ (@BatchID is null or Photo.[BatchID] =@BatchID)
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 0 THEN Photo.[FileName]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 1 THEN Photo.[FileName]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Photo.[DateApproved]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Photo.[DateApproved]
+ END ASC
+GO
diff --git a/Backup/02.03.03.SqlDataProvider b/Backup/02.03.03.SqlDataProvider
new file mode 100644
index 0000000..11a278f
--- /dev/null
+++ b/Backup/02.03.03.SqlDataProvider
@@ -0,0 +1,106 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumList
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ Album.[AlbumOrder], Album.[Caption]
+END
+ELSE
+BEGIN
+SET NOCOUNT ON
+DECLARE @level int, @line int, @current int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@ParentAlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM #stack
+ WHERE level = @level
+
+IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+BEGIN
+ insert into #hierarchy(AlbumID, level) values(@current, @level)
+END
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY AlbumOrder desc, Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, #hierarchy
+WHERE
+ #hierarchy.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+drop table #hierarchy
+drop table #stack
+END
+GO
diff --git a/Backup/02.03.05.SqlDataProvider b/Backup/02.03.05.SqlDataProvider
new file mode 100644
index 0000000..eda0d81
--- /dev/null
+++ b/Backup/02.03.05.SqlDataProvider
@@ -0,0 +1,99 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ Album.[AlbumOrder], Album.[Caption]
+END
+ELSE
+BEGIN
+SET NOCOUNT ON
+DECLARE @level int, @line int, @current int
+
+DECLARE @hierarchy TABLE(AlbumID int, level int)
+DECLARE @stack TABLE(item int, level int)
+INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY AlbumOrder desc, Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+END
diff --git a/Backup/02.03.08.SqlDataProvider b/Backup/02.03.08.SqlDataProvider
new file mode 100644
index 0000000..30408e7
--- /dev/null
+++ b/Backup/02.03.08.SqlDataProvider
@@ -0,0 +1,299 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ ADD [Description2] nvarchar(2000)
+GO
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+SET [Description2] = [Description]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ DROP COLUMN [Description]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ ADD [Description] nvarchar(2000)
+GO
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+SET [Description] = [Description2]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ DROP COLUMN [Description2]
+GO
+
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album ADD
+ CreateDate datetime NULL
+GO
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+SET CreateDate = (select top 1 DateCreated from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo.AlbumID = {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album.AlbumID Order By DateCreated ASC)
+GO
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+SET CreateDate = GetDate()
+WHERE CreateDate is null
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(2000),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int,
+ @CreateDate datetime
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album (
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder],
+ [CreateDate]
+) VALUES (
+ @ModuleID,
+ @ParentAlbumID,
+ @Caption,
+ @Description,
+ @IsPublic,
+ @HomeDirectory,
+ @Password,
+ @AlbumOrder,
+ @CreateDate
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(255),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int,
+ @CreateDate datetime
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [ParentAlbumID] = @ParentAlbumID,
+ [Caption] = @Caption,
+ [Description] = @Description,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory,
+ [Password] = @Password,
+ [AlbumOrder] = @AlbumOrder,
+ [CreateDate] = @CreateDate
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+ @AlbumID int
+AS
+
+SELECT
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder],
+ [CreateDate]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGetByPath
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGetByPath
+ @ModuleID int,
+ @HomeDirectory nvarchar(255)
+AS
+
+SELECT TOP 1
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder],
+ [CreateDate]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [ModuleID] = @ModuleID
+ and
+ [HomeDirectory] = @HomeDirectory
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit,
+ @SortBy int,
+ @SortOrder int
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END ASC
+END
+ELSE
+BEGIN
+SET NOCOUNT ON
+DECLARE @level int, @line int, @current int
+
+DECLARE @hierarchy TABLE(AlbumID int, level int)
+DECLARE @stack TABLE(item int, level int)
+INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END ASC
+ --ORDER BY AlbumOrder desc, Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+--drop table @hierarchy
+--drop table @stack
+END
+GO
diff --git a/Backup/02.03.10.SqlDataProvider b/Backup/02.03.10.SqlDataProvider
new file mode 100644
index 0000000..6c83259
--- /dev/null
+++ b/Backup/02.03.10.SqlDataProvider
@@ -0,0 +1,22 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagAdd
+ @PhotoID int,
+ @TagID int
+AS
+
+IF( (SELECT COUNT(*) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag WHERE PhotoID = @PhotoID and TagID = @TagID) = 0 )
+BEGIN
+ INSERT INTO
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag(PhotoID, TagID)
+ VALUES(@PhotoID, @TagID)
+
+ UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+ SET
+ Usages = (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt where pt.TagID = @TagID)
+ WHERE
+ TagID = @TagID
+END
+GO
diff --git a/Backup/02.03.11.SqlDataProvider b/Backup/02.03.11.SqlDataProvider
new file mode 100644
index 0000000..6c83259
--- /dev/null
+++ b/Backup/02.03.11.SqlDataProvider
@@ -0,0 +1,22 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagAdd
+ @PhotoID int,
+ @TagID int
+AS
+
+IF( (SELECT COUNT(*) FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag WHERE PhotoID = @PhotoID and TagID = @TagID) = 0 )
+BEGIN
+ INSERT INTO
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag(PhotoID, TagID)
+ VALUES(@PhotoID, @TagID)
+
+ UPDATE
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+ SET
+ Usages = (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt where pt.TagID = @TagID)
+ WHERE
+ TagID = @TagID
+END
+GO
diff --git a/Backup/02.03.12.SqlDataProvider b/Backup/02.03.12.SqlDataProvider
new file mode 100644
index 0000000..34bf253
--- /dev/null
+++ b/Backup/02.03.12.SqlDataProvider
@@ -0,0 +1,19 @@
+DROP FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags
+GO
+
+CREATE FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(@PhotoID int)
+RETURNS nvarchar(1000)
+AS
+ BEGIN
+
+ DECLARE @p_str nvarchar(2000)
+ SET @p_str = ''
+
+ SELECT @p_str = @p_str + ' ' + CAST(t.[Name] AS nvarchar(100))
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt
+ WHERE t.TagID = pt.TagID and pt.PhotoID = @PhotoID
+
+ RETURN LTRIM(@p_str)
+
+END
+GO
diff --git a/Backup/02.03.14.SqlDataProvider b/Backup/02.03.14.SqlDataProvider
new file mode 100644
index 0000000..7887124
--- /dev/null
+++ b/Backup/02.03.14.SqlDataProvider
@@ -0,0 +1,143 @@
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit,
+ @SortBy int,
+ @SortOrder int
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END ASC,
+ newid()
+END
+ELSE
+BEGIN
+SET NOCOUNT ON
+DECLARE @level int, @line int, @current int
+
+DECLARE @hierarchy TABLE(AlbumID int, level int)
+DECLARE @stack TABLE(item int, level int)
+INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END ASC,
+ newid()
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+END
+GO
diff --git a/Backup/02.03.15.SqlDataProvider b/Backup/02.03.15.SqlDataProvider
new file mode 100644
index 0000000..7887124
--- /dev/null
+++ b/Backup/02.03.15.SqlDataProvider
@@ -0,0 +1,143 @@
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit,
+ @SortBy int,
+ @SortOrder int
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END ASC,
+ newid()
+END
+ELSE
+BEGIN
+SET NOCOUNT ON
+DECLARE @level int, @line int, @current int
+
+DECLARE @hierarchy TABLE(AlbumID int, level int)
+DECLARE @stack TABLE(item int, level int)
+INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END ASC,
+ newid()
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album where ParentAlbumID = Album.AlbumID and IsPublic = 1) as 'NumberOfAlbums',
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p where a.ParentAlbumID = Album.AlbumID and a.AlbumID = p.AlbumID and a.IsPublic = 1 and p.IsApproved = 1) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+END
+GO
diff --git a/Backup/02.03.17.SqlDataProvider b/Backup/02.03.17.SqlDataProvider
new file mode 100644
index 0000000..8433c68
--- /dev/null
+++ b/Backup/02.03.17.SqlDataProvider
@@ -0,0 +1,83 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int,
+ @Count int,
+ @TagID int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory]
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p,
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a,
+ #hierarchy
+ WHERE
+ #hierarchy.AlbumID = a.AlbumID
+ AND
+ a.[AlbumID] = p.[AlbumID]
+ AND
+ a.[IsPublic] = 1
+ AND
+ p.[IsApproved] = 1
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND p.PhotoID = pt.PhotoID))
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
diff --git a/Backup/02.04.00.SqlDataProvider b/Backup/02.04.00.SqlDataProvider
new file mode 100644
index 0000000..8794c88
--- /dev/null
+++ b/Backup/02.04.00.SqlDataProvider
@@ -0,0 +1,85 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit,
+ @TagID int,
+ @BatchID nvarchar(50),
+ @SearchText nvarchar(255),
+ @SortBy int,
+ @SortOrder int
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Photo.[BatchID],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(Photo.[PhotoID]) as 'Tags'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND Photo.PhotoID = pt.PhotoID))
+ AND
+ (@BatchID is null or Photo.[BatchID] =@BatchID)
+ AND
+ (@SearchText is null OR (Photo.Name LIKE '%' + @SearchText + '%' OR Photo.Description LIKE '%' + @SearchText + '%' OR Photo.PhotoID IN (SELECT pt.PhotoID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t INNER JOIN {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt ON t.TagID = pt.TagID WHERE t.ModuleID = @ModuleID AND t.Name LIKE '%' + @SearchText + '%')))
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 0 THEN Photo.[FileName]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 1 THEN Photo.[FileName]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Photo.[DateApproved]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Photo.[DateApproved]
+ END ASC
+GO
+
\ No newline at end of file
diff --git a/Backup/02.04.05.SqlDataProvider b/Backup/02.04.05.SqlDataProvider
new file mode 100644
index 0000000..6181f99
--- /dev/null
+++ b/Backup/02.04.05.SqlDataProvider
@@ -0,0 +1,267 @@
+CREATE FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountAlbums
+(@ModuleID int, @ParentAlbumID int, @ShowPublicOnly bit)
+RETURNS bigint
+AS
+BEGIN
+
+ DECLARE @level int, @line int, @current int
+
+ DECLARE @hierarchy TABLE(HierarchyID int IDENTITY (1,1), AlbumID int, level int)
+ DECLARE @stack TABLE(item int, level int)
+ INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+ SELECT @level = 1
+
+ WHILE @level > 0
+ BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+ IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+ BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+ END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+ END -- WHILE
+
+ DECLARE @Count int
+
+ SELECT
+ @Count = COUNT(*)
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+ WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+ RETURN @Count
+
+END
+GO
+
+CREATE FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountPhotos
+(@ModuleID int, @ParentAlbumID int, @ShowPublicOnly bit)
+RETURNS bigint
+AS
+BEGIN
+
+ DECLARE @level int, @line int, @current int
+
+ DECLARE @hierarchy TABLE(HierarchyID int IDENTITY (1,1), AlbumID int, level int)
+ DECLARE @stack TABLE(item int, level int)
+ INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+ SELECT @level = 1
+
+ WHILE @level > 0
+ BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+ IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+ BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+ END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+ END -- WHILE
+
+ DECLARE @Count int
+
+ SELECT
+ @Count = COUNT(*)
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo, @hierarchy h
+ WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.AlbumID = Photo.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+
+ RETURN @Count
+
+END
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit,
+ @SortBy int,
+ @SortOrder int
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+ SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountAlbums(@ModuleID, Album.[AlbumID], @ShowPublicOnly) AS 'NumberOfAlbums',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountPhotos(@ModuleID, Album.[AlbumID], @ShowPublicOnly) as 'NumberOfAlbumPhotos'
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END ASC,
+ --CASE
+ -- WHEN @SortBy = 3 THEN newid() END
+ newid()
+END
+ELSE
+BEGIN
+ SET NOCOUNT ON
+ DECLARE @level int, @line int, @current int
+
+ DECLARE @hierarchy TABLE(HierarchyID int IDENTITY (1,1), AlbumID int, level int)
+ DECLARE @stack TABLE(item int, level int)
+ INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+ SELECT @level = 1
+
+ WHILE @level > 0
+ BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+ IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+ BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+ END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END ASC,
+ newid()
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+ END -- WHILE
+
+ SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountAlbums(@ModuleID, Album.[AlbumID], @ShowPublicOnly) AS 'NumberOfAlbums',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountPhotos(@ModuleID, Album.[AlbumID], @ShowPublicOnly) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+ WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ ORDER BY
+ h.HierarchyID ASC
+END
+GO
diff --git a/Backup/02.04.06.SqlDataProvider b/Backup/02.04.06.SqlDataProvider
new file mode 100644
index 0000000..f9ab8ca
--- /dev/null
+++ b/Backup/02.04.06.SqlDataProvider
@@ -0,0 +1,29 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(2000),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int,
+ @CreateDate datetime
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [ParentAlbumID] = @ParentAlbumID,
+ [Caption] = @Caption,
+ [Description] = @Description,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory,
+ [Password] = @Password,
+ [AlbumOrder] = @AlbumOrder,
+ [CreateDate] = @CreateDate
+WHERE
+ [AlbumID] = @AlbumID
+GO
diff --git a/Backup/02.04.14.SqlDataProvider b/Backup/02.04.14.SqlDataProvider
new file mode 100644
index 0000000..784239b
--- /dev/null
+++ b/Backup/02.04.14.SqlDataProvider
@@ -0,0 +1,91 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int,
+ @Count int,
+ @TagID int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory],
+ a.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(p.[PhotoID]) as 'Tags'
+ FROM
+ #hierarchy INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a ON #hierarchy.AlbumID = a.AlbumID INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p ON a.[AlbumID] = p.[AlbumID] LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON p.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON p.ApproverID = Approver.UserID
+ WHERE
+ a.[IsPublic] = 1
+ AND
+ p.[IsApproved] = 1
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND p.PhotoID = pt.PhotoID))
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
diff --git a/Backup/02.04.33.SqlDataProvider b/Backup/02.04.33.SqlDataProvider
new file mode 100644
index 0000000..a945eb5
--- /dev/null
+++ b/Backup/02.04.33.SqlDataProvider
@@ -0,0 +1,277 @@
+ALTER TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album ADD
+ InheritSecurity bit NOT NULL CONSTRAINT DF_{objectQualifier}DnnForge_SimpleGallery_Album_InheritSecurity DEFAULT 1
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(2000),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int,
+ @CreateDate datetime,
+ @InheritSecurity bit
+AS
+
+INSERT INTO {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album (
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder],
+ [CreateDate],
+ [InheritSecurity]
+) VALUES (
+ @ModuleID,
+ @ParentAlbumID,
+ @Caption,
+ @Description,
+ @IsPublic,
+ @HomeDirectory,
+ @Password,
+ @AlbumOrder,
+ @CreateDate,
+ @InheritSecurity
+)
+
+select SCOPE_IDENTITY()
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+ @AlbumID int
+AS
+
+SELECT
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder],
+ [CreateDate],
+ [InheritSecurity]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [AlbumID] = @AlbumID
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGetByPath
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGetByPath
+ @ModuleID int,
+ @HomeDirectory nvarchar(255)
+AS
+
+SELECT TOP 1
+ [AlbumID],
+ [ModuleID],
+ [ParentAlbumID],
+ [Caption],
+ [Description],
+ [IsPublic],
+ [HomeDirectory],
+ [Password],
+ [AlbumOrder],
+ [CreateDate],
+ [InheritSecurity]
+FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+WHERE
+ [ModuleID] = @ModuleID
+ and
+ [HomeDirectory] = @HomeDirectory
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+ @ModuleID int,
+ @ParentAlbumID int,
+ @ShowPublicOnly bit,
+ @ShowChildren bit,
+ @SortBy int,
+ @SortOrder int
+as
+
+IF( @ShowChildren = 0 )
+BEGIN
+ SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ Album.[InheritSecurity],
+ (select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo where AlbumID = Album.AlbumID and IsApproved = 1) as 'NumberOfPhotos',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountAlbums(@ModuleID, Album.[AlbumID], @ShowPublicOnly) AS 'NumberOfAlbums',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountPhotos(@ModuleID, Album.[AlbumID], @ShowPublicOnly) as 'NumberOfAlbumPhotos'
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE
+ Album.[ModuleID] = @ModuleID
+ AND
+ Album.[ParentAlbumID] = @ParentAlbumID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END ASC,
+ --CASE
+ -- WHEN @SortBy = 3 THEN newid() END
+ newid()
+END
+ELSE
+BEGIN
+ SET NOCOUNT ON
+ DECLARE @level int, @line int, @current int
+
+ DECLARE @hierarchy TABLE(HierarchyID int IDENTITY (1,1), AlbumID int, level int)
+ DECLARE @stack TABLE(item int, level int)
+ INSERT INTO @stack VALUES (@ParentAlbumID, 1)
+ SELECT @level = 1
+
+ WHILE @level > 0
+ BEGIN
+ IF EXISTS (SELECT * FROM @stack WHERE level = @level)
+ BEGIN
+ SELECT @current = item
+ FROM @stack
+ WHERE level = @level
+
+ IF( @ParentAlbumID = -1 OR @ParentAlbumID != @current )
+ BEGIN
+ insert into @hierarchy(AlbumID, level) values(@current, @level)
+ END
+
+ DELETE FROM @stack
+ WHERE level = @level
+ AND item = @current
+
+ INSERT @stack
+ SELECT Album.AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album
+ WHERE Album.parentAlbumID = @current and ModuleID = @ModuleID
+ ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Album.[Caption]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Album.[Caption]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Album.[CreateDate]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Album.[CreateDate]
+ END ASC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Album.[AlbumOrder]
+ END DESC,
+ CASE
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Album.[AlbumOrder]
+ END ASC,
+ newid()
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+ END -- WHILE
+
+ SELECT
+ Album.[AlbumID],
+ Album.[ModuleID],
+ Album.[ParentAlbumID],
+ Album.[Caption],
+ Album.[Description],
+ Album.[IsPublic],
+ Album.[HomeDirectory],
+ Album.[Password],
+ Album.[AlbumOrder],
+ Album.[CreateDate],
+ Album.[InheritSecurity],
+ (Select count(*) from {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo where Photo.AlbumID = Album.AlbumID) as 'NumberOfPhotos',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountAlbums(@ModuleID, Album.[AlbumID], @ShowPublicOnly) AS 'NumberOfAlbums',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountPhotos(@ModuleID, Album.[AlbumID], @ShowPublicOnly) as 'NumberOfAlbumPhotos',
+ REPLICATE('.',(level-2)*2) + Album.[Caption] as 'CaptionIndented'
+ FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album, @hierarchy h
+ WHERE
+ h.AlbumID = Album.AlbumID
+ AND
+ Album.[ModuleID] = @ModuleID
+ AND
+ ([Album].[IsPublic] = @ShowPublicOnly OR [Album].[IsPublic] = 1)
+ ORDER BY
+ h.HierarchyID ASC
+END
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+ @AlbumID int,
+ @ModuleID int,
+ @ParentAlbumID int,
+ @Caption nvarchar(255),
+ @Description nvarchar(2000),
+ @IsPublic bit,
+ @HomeDirectory nvarchar(255),
+ @Password nvarchar(50),
+ @AlbumOrder int,
+ @CreateDate datetime,
+ @InheritSecurity bit
+AS
+
+UPDATE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album SET
+ [ModuleID] = @ModuleID,
+ [ParentAlbumID] = @ParentAlbumID,
+ [Caption] = @Caption,
+ [Description] = @Description,
+ [IsPublic] = @IsPublic,
+ [HomeDirectory] = @HomeDirectory,
+ [Password] = @Password,
+ [AlbumOrder] = @AlbumOrder,
+ [CreateDate] = @CreateDate,
+ [InheritSecurity] = @InheritSecurity
+WHERE
+ [AlbumID] = @AlbumID
+GO
diff --git a/Backup/02.04.39.SqlDataProvider b/Backup/02.04.39.SqlDataProvider
new file mode 100644
index 0000000..735f76f
--- /dev/null
+++ b/Backup/02.04.39.SqlDataProvider
@@ -0,0 +1,21 @@
+DROP FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags
+GO
+
+CREATE FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(@PhotoID int)
+RETURNS nvarchar(1000)
+AS
+ BEGIN
+
+ DECLARE @p_str nvarchar(2000)
+ SET @p_str = ''
+
+ SELECT @p_str = @p_str + ',' + CAST(t.[Name] AS nvarchar(100))
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t, {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt
+ WHERE t.TagID = pt.TagID and pt.PhotoID = @PhotoID
+ IF( LEN(@p_str) > 1 )
+ BEGIN
+ RETURN RIGHT(@p_str, LEN(@p_str)-1)
+ END
+ RETURN ''
+END
+GO
diff --git a/Backup/SqlDataProvider.vb b/Backup/SqlDataProvider.vb
new file mode 100644
index 0000000..7d54843
--- /dev/null
+++ b/Backup/SqlDataProvider.vb
@@ -0,0 +1,203 @@
+'
+' Simple Gallery for DotNetNuke - http://www.dotnetnuke.com
+' Copyright (c) 2002-2005
+' by Scott McCulloch ( smcculloch@iinet.net.au ) ( http://www.smcculloch.net )
+'
+
+Imports System
+Imports System.Configuration
+Imports System.Data
+Imports Microsoft.ApplicationBlocks.Data
+
+Imports DotNetNuke
+Imports DotNetNuke.Common.Utilities
+
+Imports Ventrian.SimpleGallery.Data
+
+Namespace Ventrian.SimpleGallery
+
+ Public Class SqlDataProvider
+
+ Inherits DataProvider
+
+#Region " Private Members "
+
+ Private Const ProviderType As String = "data"
+
+ Private _providerConfiguration As Framework.Providers.ProviderConfiguration = Framework.Providers.ProviderConfiguration.GetProviderConfiguration(ProviderType)
+ Private _connectionString As String
+ Private _providerPath As String
+ Private _objectQualifier As String
+ Private _databaseOwner As String
+
+#End Region
+
+#Region " Constructors "
+
+ Public Sub New()
+
+ ' Read the configuration specific information for this provider
+ Dim objProvider As Framework.Providers.Provider = CType(_providerConfiguration.Providers(_providerConfiguration.DefaultProvider), Framework.Providers.Provider)
+
+ ' Read the attributes for this provider
+ _connectionString = Config.GetConnectionString()
+
+ _providerPath = objProvider.Attributes("providerPath")
+
+ _objectQualifier = objProvider.Attributes("objectQualifier")
+ If _objectQualifier <> "" And _objectQualifier.EndsWith("_") = False Then
+ _objectQualifier += "_"
+ End If
+
+ _databaseOwner = objProvider.Attributes("databaseOwner")
+ If _databaseOwner <> "" And _databaseOwner.EndsWith(".") = False Then
+ _databaseOwner += "."
+ End If
+
+ End Sub
+
+#End Region
+
+#Region " Properties "
+
+ Public ReadOnly Property ConnectionString() As String
+ Get
+ Return _connectionString
+ End Get
+ End Property
+
+ Public ReadOnly Property ProviderPath() As String
+ Get
+ Return _providerPath
+ End Get
+ End Property
+
+ Public ReadOnly Property ObjectQualifier() As String
+ Get
+ Return _objectQualifier
+ End Get
+ End Property
+
+ Public ReadOnly Property DatabaseOwner() As String
+ Get
+ Return _databaseOwner
+ End Get
+ End Property
+
+#End Region
+
+#Region " Public Methods "
+
+ Private Function GetNull(ByVal Field As Object) As Object
+ Return DotNetNuke.Common.Utilities.Null.GetNull(Field, DBNull.Value)
+ End Function
+
+ Public Overrides Function GetPhoto(ByVal photoID As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoGet", photoID), IDataReader)
+ End Function
+
+ Public Overrides Function GetFirstFromAlbum(ByVal albumID As Integer, ByVal moduleID As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_GetFirstFromAlbum", albumID, moduleID), IDataReader)
+ End Function
+
+ Public Overrides Function GetRandomPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal rowCount As Integer, ByVal tagID As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_GetRandomPhoto", albumID, moduleID, rowCount, GetNull(tagID)), IDataReader)
+ End Function
+
+ Public Overrides Function ListPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Integer, ByVal sortOrder As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoList", moduleID, GetNull(albumID), isApproved, GetNull(maxCount), showAll, GetNull(tagID), GetNull(batchID), GetNull(search), sortBy, sortOrder), IDataReader)
+ End Function
+
+ Public Overrides Function AddPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal name As String, ByVal description As String, ByVal fileName As String, ByVal dateCreated As DateTime, ByVal width As Integer, ByVal height As Integer, ByVal authorID As Integer, ByVal approverID As Integer, ByVal isApproved As Boolean, ByVal dateApproved As DateTime, ByVal dateUpdated As DateTime, ByVal batchID As String) As Integer
+ Return CType(SqlHelper.ExecuteScalar(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoAdd", moduleID, albumID, name, GetNull(description), fileName, dateCreated, width, height, GetNull(authorID), GetNull(approverID), isApproved, GetNull(dateApproved), GetNull(dateUpdated), GetNull(batchID)), Integer)
+ End Function
+
+ Public Overrides Sub UpdatePhoto(ByVal photoID As Integer, ByVal moduleID As Integer, ByVal albumID As Integer, ByVal name As String, ByVal description As String, ByVal fileName As String, ByVal dateCreated As DateTime, ByVal width As Integer, ByVal height As Integer, ByVal authorID As Integer, ByVal approverID As Integer, ByVal isApproved As Boolean, ByVal dateApproved As DateTime, ByVal dateUpdated As DateTime, ByVal batchID As String)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoUpdate", photoID, moduleID, albumID, name, GetNull(description), fileName, dateCreated, width, height, GetNull(authorID), GetNull(approverID), isApproved, GetNull(dateApproved), GetNull(dateUpdated), GetNull(batchID))
+ End Sub
+
+ Public Overrides Sub DeletePhoto(ByVal photoID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoDelete", photoID)
+ End Sub
+
+ Public Overrides Sub SetDefaultPhoto(ByVal photoID As Integer, ByVal albumID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_SetDefaultPhoto", photoID, albumID)
+ End Sub
+
+ Public Overrides Function GetAlbum(ByVal albumID As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_AlbumGet", albumID), IDataReader)
+ End Function
+
+ Public Overrides Function GetAlbumByPath(ByVal moduleID As Integer, ByVal homeDirectory As String) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_AlbumGetByPath", moduleID, homeDirectory), IDataReader)
+ End Function
+
+ Public Overrides Function ListAlbumAll(ByVal moduleID As Integer, ByVal parentAlbumID As Integer, ByVal showPublicOnly As Boolean, ByVal showChildren As Boolean, ByVal sortBy As Integer, ByVal sortOrder As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_AlbumListAll", moduleID, parentAlbumID, showPublicOnly, showChildren, sortBy, sortOrder), IDataReader)
+ End Function
+
+ Public Overrides Function AddAlbum(ByVal moduleID As Integer, ByVal parentModuleID As Integer, ByVal caption As String, ByVal description As String, ByVal isPublic As Boolean, ByVal homeDirectory As String, ByVal password As String, ByVal albumOrder As Integer, ByVal createDate As DateTime, ByVal inheritSecurity As Boolean) As Integer
+ Return CType(SqlHelper.ExecuteScalar(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_AlbumAdd", moduleID, parentModuleID, caption, description, isPublic, homeDirectory, password, albumOrder, createDate, inheritSecurity), Integer)
+ End Function
+
+ Public Overrides Sub UpdateAlbum(ByVal albumID As Integer, ByVal moduleID As Integer, ByVal parentModuleID As Integer, ByVal caption As String, ByVal description As String, ByVal isPublic As Boolean, ByVal homeDirectory As String, ByVal password As String, ByVal albumOrder As Integer, ByVal createDate As DateTime, ByVal inheritSecurity As Boolean)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_AlbumUpdate", albumID, moduleID, parentModuleID, caption, description, isPublic, homeDirectory, password, albumOrder, createDate, inheritSecurity)
+ End Sub
+
+ Public Overrides Sub DeleteAlbum(ByVal albumID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_AlbumDelete", albumID)
+ End Sub
+
+ Public Overrides Function GetTemplate(ByVal moduleID As Integer, ByVal name As String) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TemplateGet", moduleID, name), IDataReader)
+ End Function
+
+ Public Overrides Function AddTemplate(ByVal moduleID As Integer, ByVal name As String, ByVal template As String) As Integer
+ Return CType(SqlHelper.ExecuteScalar(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TemplateAdd", moduleID, name, template), Integer)
+ End Function
+
+ Public Overrides Sub UpdateTemplate(ByVal templateID As Integer, ByVal moduleID As Integer, ByVal name As String, ByVal template As String)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TemplateUpdate", templateID, moduleID, name, template)
+ End Sub
+
+ Public Overrides Function GetTag(ByVal tagID As Integer) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TagGet", tagID), IDataReader)
+ End Function
+
+ Public Overrides Function GetTagByName(ByVal moduleID As Integer, ByVal name As String) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TagGetByName", moduleID, name), IDataReader)
+ End Function
+
+ Public Overrides Function ListTag(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal maxCount As Integer, ByVal showApprovedOnly As Boolean) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TagList", moduleID, GetNull(albumID), GetNull(maxCount), showApprovedOnly), IDataReader)
+ End Function
+
+ Public Overrides Function AddTag(ByVal moduleID As Integer, ByVal name As String, ByVal nameLowered As String) As Integer
+ Return CType(SqlHelper.ExecuteScalar(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TagAdd", moduleID, name, nameLowered), Integer)
+ End Function
+
+ Public Overrides Sub UpdateTag(ByVal tagID As Integer, ByVal moduleID As Integer, ByVal name As String, ByVal nameLowered As String, ByVal usages As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TagUpdate", tagID, moduleID, name, nameLowered, usages)
+ End Sub
+
+ Public Overrides Sub DeleteTag(ByVal tagID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_TagDelete", tagID)
+ End Sub
+
+ Public Overrides Sub AddPhotoTag(ByVal photoID As Integer, ByVal tagID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoTagAdd", photoID, tagID)
+ End Sub
+
+ Public Overrides Sub DeletePhotoTag(ByVal photoID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoTagDelete", photoID)
+ End Sub
+
+ Public Overrides Sub DeletePhotoTagByTag(ByVal tagID As Integer)
+ SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoTagDeleteByTag", tagID)
+ End Sub
+
+#End Region
+
+ End Class
+
+End Namespace
\ No newline at end of file
diff --git a/Backup/Ventrian.SimpleGallery.SqlDataProvider.vbproj b/Backup/Ventrian.SimpleGallery.SqlDataProvider.vbproj
new file mode 100644
index 0000000..8fe8d38
--- /dev/null
+++ b/Backup/Ventrian.SimpleGallery.SqlDataProvider.vbproj
@@ -0,0 +1,165 @@
+
+
+ Local
+ 9.0.21022
+ 2.0
+ {0A2B619D-DF3A-4480-AC7B-C216602998D7}
+ Debug
+ AnyCPU
+
+
+
+
+ Ventrian.SimpleGallery.SqlDataProvider
+
+
+ None
+ JScript
+ Grid
+ IE50
+ false
+ Library
+ Binary
+ On
+ Off
+
+
+
+
+
+
+ Windows
+
+
+ 2.0
+
+
+ ..\..\..\..\..\bin\
+ DnnForge.SimpleGallery.SqlDataProvider.xml
+ 285212672
+
+
+
+
+ true
+ true
+ true
+ false
+ false
+ false
+ false
+ 1
+ 42016,42017,42018,42019,42032
+ full
+
+
+ ..\..\..\..\..\bin\
+ DnnForge.SimpleGallery.SqlDataProvider.xml
+ 285212672
+
+
+
+
+ false
+ true
+ false
+ true
+ false
+ false
+ false
+ 1
+ 42016,42017,42018,42019,42032
+ none
+
+
+
+ False
+ False
+
+
+ False
+ ..\..\..\..\..\bin\Microsoft.ApplicationBlocks.Data.dll
+ False
+
+
+ System
+
+
+
+ System.Data
+
+
+ System.XML
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Code
+
+
+
+
+ {2C1B3FCD-EE1D-4A5E-A8D5-02C8B959AF8F}
+ Ventrian.SimpleGallery
+ False
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Backup/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user b/Backup/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user
new file mode 100644
index 0000000..003850a
--- /dev/null
+++ b/Backup/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user
@@ -0,0 +1,57 @@
+
+
+ 7.10.3077
+ Debug
+ AnyCPU
+ C:\Projects\DotNetNuke\Sites\DotNetNuke311\controls\DataAccessBlock\bin\;C:\Projects\DotNetNuke\Sites\DotNetNuke311\bin\;D:\Projects\DotNetNuke\Sites\DotNetNuke311\controls\DataAccessBlock\bin\;D:\Projects\DotNetNuke\Sites\DotNetNuke311\bin\
+
+
+
+
+ 0
+ ProjectFiles
+ 0
+
+
+ false
+ false
+ false
+ false
+ false
+
+
+ Project
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+ false
+ false
+ false
+ false
+ false
+
+
+ Project
+
+
+
+
+
+
+
+
+
+
+ false
+
+
\ No newline at end of file
diff --git a/Backup/uninstall.SqlDataProvider b/Backup/uninstall.SqlDataProvider
new file mode 100644
index 0000000..79bc7a9
--- /dev/null
+++ b/Backup/uninstall.SqlDataProvider
@@ -0,0 +1,101 @@
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagAdd
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagDelete
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTagDeleteByTag
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagAdd
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagDelete
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagGet
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagGetByName
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagList
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TagUpdate
+GO
+
+DROP FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountAlbums
+GO
+
+DROP FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_CountPhotos
+GO
+
+DROP FUNCTION {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGetByPath
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TemplateAdd
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TemplateGet
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_TemplateUpdate
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoGet
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoList
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoAdd
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoUpdate
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoDelete
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetFirstFromAlbum
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_SetDefaultPhoto
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumGet
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumListAll
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumAdd
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumUpdate
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumDelete
+GO
+
+DROP TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag
+GO
+
+DROP TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag
+GO
+
+DROP TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Template
+GO
+
+DROP TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo
+GO
+
+DROP TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+GO
diff --git a/Common/Constants.vb b/Common/Constants.vb
index 935fe33..2c711f0 100755
--- a/Common/Constants.vb
+++ b/Common/Constants.vb
@@ -82,6 +82,8 @@ Namespace Ventrian.SimpleGallery.Common
& "[PHOTOWITHBORDER]" _
& "[EDIT][TITLE]"
+ Public Const SETTING_TEMPLATE_HEADER As String = "TemplateHeader"
+ Public Const SETTING_TEMPLATE_FOOTER As String = "TemplateFooter"
Public Const SETTING_ALBUM_DEFAULT_PATH As String = "DefaultAlbumPath"
Public Const SETTING_LIGHTBOX_DEFAULT_PATH As String = "DefaultLightboxPath"
Public Const SETTING_RESIZE_PHOTO As String = "ResizePhoto"
@@ -155,6 +157,8 @@ Namespace Ventrian.SimpleGallery.Common
Public Const SETTING_APPROVE_ROLES As String = "ApproveRoles"
Public Const SETTING_ALBUM_ROLES As String = "AlbumRoles"
+ Public Const SETTING_PUBLIC_MODE As String = "PublicMode"
+
Public Const SETTING_RANDOM_MODE As String = "RandomMode"
Public Const SETTING_RANDOM_DISPLAY As String = "RandomDisplay"
Public Const SETTING_RANDOM_COMPRESSION As String = "RandomCompression"
@@ -177,6 +181,8 @@ Namespace Ventrian.SimpleGallery.Common
Public Const SETTING_RANDOM_ALBUM_SLIDESHOW As String = "RandomAlbumSlideshow"
Public Const SETTING_RANDOM_INCLUDE_JQUERY As String = "RandomIncludeJQuery"
+ Public Const DEFAULT_PUBLIC_MODE As ModeType = PublicModeType.ShowPublic
+
Public Const DEFAULT_RANDOM_MODE As ModeType = ModeType.Latest
Public Const DEFAULT_RANDOM_DISPLAY As DisplayType = DisplayType.Photo
Public Const DEFAULT_RANDOM_COMPRESSION As CompressionType = CompressionType.Quality
diff --git a/Common/PublicModeType.vb b/Common/PublicModeType.vb
new file mode 100644
index 0000000..e3d3823
--- /dev/null
+++ b/Common/PublicModeType.vb
@@ -0,0 +1,18 @@
+'
+' Simple Gallery for DotNetNuke - http://www.dotnetnuke.com
+' Copyright (c) 2002-2007
+' by Ventrian ( sales@ventrian.com ) ( http://www.ventrian.com )
+'
+
+Namespace Ventrian.SimpleGallery.Common
+
+ Public Enum PublicModeType
+
+ ShowPublic
+ ShowPrivate
+ ShowAllAlbum
+
+
+ End Enum
+
+End Namespace
diff --git a/Controls/ViewAlbums.ascx b/Controls/ViewAlbums.ascx
index 5ae97c6..fe0a696 100755
--- a/Controls/ViewAlbums.ascx
+++ b/Controls/ViewAlbums.ascx
@@ -14,6 +14,7 @@
.album-frame .bot---x- {background-image: url(<%= ResolveUrl("../images/borders/" & BorderStyle & "/album-bstretch.gif") %>);}
+
@@ -21,3 +22,4 @@
+
diff --git a/Controls/ViewAlbums.ascx.designer.vb b/Controls/ViewAlbums.ascx.designer.vb
index 59e5d4d..540347d 100755
--- a/Controls/ViewAlbums.ascx.designer.vb
+++ b/Controls/ViewAlbums.ascx.designer.vb
@@ -1,34 +1,44 @@
'------------------------------------------------------------------------------
-'
-' This code was generated by a tool.
-' Runtime Version:2.0.50727.312
+'
+' Codice generato da uno strumento.
'
-' Changes to this file may cause incorrect behavior and will be lost if
-' the code is regenerated.
-'
+' Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+' il codice viene rigenerato.
+'
'------------------------------------------------------------------------------
-Option Strict Off
+Option Strict On
Option Explicit On
-
Namespace Ventrian.SimpleGallery.Controls
- '''
- '''ViewAlbums class.
- '''
- '''
- '''Auto-generated class.
- '''
Partial Public Class ViewAlbums
'''
- '''dlAlbum control.
+ '''Controllo dlAlbumHeader.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents dlAlbumHeader As Global.System.Web.UI.WebControls.PlaceHolder
+
+ '''
+ '''Controllo dlAlbum.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dlAlbum As Global.System.Web.UI.WebControls.DataList
+
+ '''
+ '''Controllo dlAlbumFooter.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents dlAlbumFooter As Global.System.Web.UI.WebControls.PlaceHolder
End Class
End Namespace
diff --git a/Controls/ViewAlbums.ascx.vb b/Controls/ViewAlbums.ascx.vb
index 2e0e74c..21c83b5 100755
--- a/Controls/ViewAlbums.ascx.vb
+++ b/Controls/ViewAlbums.ascx.vb
@@ -21,6 +21,8 @@ Namespace Ventrian.SimpleGallery.Controls
Private _albumID As Integer = Null.NullInteger
Private _albumTemplate As String = ""
+ Private _albumTemplateHeader As String = ""
+ Private _albumTemplateFooter As String = ""
Private _albumTemplateTokens As String()
#End Region
@@ -47,6 +49,20 @@ Namespace Ventrian.SimpleGallery.Controls
dlAlbum.DataSource = objAlbumController.List(SimpleGalleryBase.ModuleId, _albumID, Not SimpleGalleryBase.HasEditPermissions(), False, SimpleGalleryBase.GallerySettings.AlbumSortBy, SimpleGalleryBase.GallerySettings.AlbumSortDirection)
dlAlbum.DataBind()
+ If dlAlbum.DataSource.count > 0 Then
+ 'Carico Header
+ Dim objLiteralHeader As New Literal
+ objLiteralHeader.ID = Globals.CreateValidID("AlbumHeader")
+ objLiteralHeader.Text = _albumTemplateHeader
+ dlAlbumHeader.Controls.Add(objLiteralHeader)
+ 'fine Header
+ 'Carico Footer
+ Dim objLiteralFooter As New Literal
+ objLiteralFooter.ID = Globals.CreateValidID("AlbumFooter")
+ objLiteralFooter.Text = _albumTemplateFooter
+ dlAlbumFooter.Controls.Add(objLiteralFooter)
+ 'fine footer
+ End If
End Sub
Protected Function GetAlbumCount(ByVal dataItem As Object) As String
@@ -85,6 +101,23 @@ Namespace Ventrian.SimpleGallery.Controls
End Function
+ Protected Function GetAlbumPhotoLink(ByVal albumID As String, ByVal homeDirectory As String) As String
+
+ Dim objSettings As New Hashtable
+
+ Dim objPhotoController As New PhotoController
+ Dim objPhoto As PhotoInfo
+ objPhoto = objPhotoController.GetFirstFromAlbum(Convert.ToInt32(albumID), SimpleGalleryBase.ModuleId)
+ If objPhoto Is Nothing Then
+ Return ""
+ Else
+
+ Return objPhoto.FileName
+ End If
+
+
+ End Function
+
Protected Function GetAlbumPath(ByVal albumID As String, ByVal homeDirectory As String) As Hashtable
Dim objSettings As New Hashtable
@@ -235,6 +268,36 @@ Namespace Ventrian.SimpleGallery.Controls
DataCache.SetCache(cacheKey, objTemplate)
End If
+ 'Header
+ Dim cacheKeyHeader As String = SimpleGalleryBase.TabModuleId.ToString() & TemplateType.AlbumInfo.ToString() & "Header"
+ Dim objTemplateHeader As TemplateInfo = CType(DataCache.GetCache(cacheKeyHeader), TemplateInfo)
+ If (objTemplateHeader Is Nothing) Then
+ Dim objTemplateController As New TemplateController
+ objTemplateHeader = objTemplateController.Get(SimpleGalleryBase.ModuleId, TemplateType.AlbumInfo.ToString() & "Header")
+
+ If (objTemplateHeader Is Nothing) Then
+ objTemplateHeader = New TemplateInfo
+ objTemplateHeader.Template = ""
+ End If
+ DataCache.SetCache(cacheKeyHeader, objTemplateHeader)
+ End If
+ 'Footer
+ Dim cacheKeyFooter As String = SimpleGalleryBase.TabModuleId.ToString() & TemplateType.AlbumInfo.ToString() & "Footer"
+ Dim objTemplateFooter As TemplateInfo = CType(DataCache.GetCache(cacheKeyFooter), TemplateInfo)
+ If (objTemplateFooter Is Nothing) Then
+ Dim objTemplateController As New TemplateController
+ objTemplateFooter = objTemplateController.Get(SimpleGalleryBase.ModuleId, TemplateType.AlbumInfo.ToString() & "Footer")
+
+ If (objTemplateFooter Is Nothing) Then
+ objTemplateFooter = New TemplateInfo
+ objTemplateFooter.Template = ""
+ End If
+ DataCache.SetCache(cacheKeyFooter, objTemplateFooter)
+ End If
+
+ _albumTemplateHeader = objTemplateHeader.Template
+ _albumTemplateFooter = objTemplateFooter.Template
+
_albumTemplate = objTemplate.Template
_albumTemplateTokens = objTemplate.Tokens
@@ -321,6 +384,19 @@ Namespace Ventrian.SimpleGallery.Controls
objLiteral.ID = Globals.CreateValidID("Album" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
objLiteral.Text = "
"
phAlbum.Controls.Add(objLiteral)
+ Case "ALBUMPHOTOURL"
+ Dim objSettings As Hashtable = GetAlbumPath(objAlbum.AlbumID.ToString(), objAlbum.HomeDirectory)
+ Dim objLiteral As New Literal
+ objLiteral.ID = Globals.CreateValidID("Album" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
+ objLiteral.Text = objSettings("AlbumPath").ToString()
+ phAlbum.Controls.Add(objLiteral)
+ 'Dim objSPhotoUrl As String = GetAlbumPhotoLink(objAlbum.AlbumID.ToString(), objAlbum.HomeDirectory)
+ 'Dim objLiteral As New Literal
+ 'objLiteral.ID = Globals.CreateValidID("Album" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
+ 'If objSPhotoUrl <> "" Then
+ ' objLiteral.Text = SimpleGalleryBase.PortalSettings.HomeDirectory & objAlbum.HomeDirectory & "/" & objSPhotoUrl
+ ' phAlbum.Controls.Add(objLiteral)
+ 'End If
Case "ALBUMCOUNT"
Dim objLiteral As New Literal
objLiteral.ID = Globals.CreateValidID("Album" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
diff --git a/Controls/ViewPhotos.ascx b/Controls/ViewPhotos.ascx
index e1c4a7a..30db8d3 100755
--- a/Controls/ViewPhotos.ascx
+++ b/Controls/ViewPhotos.ascx
@@ -1,74 +1,78 @@
-<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="ViewPhotos.ascx.vb" Inherits="Ventrian.SimpleGallery.Controls.ViewPhotos" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- << Prev
- Next >>
-
-
-
+<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="ViewPhotos.ascx.vb" Inherits="Ventrian.SimpleGallery.Controls.ViewPhotos" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ << Prev
+
+
+
+ Next >>
+
+
+
diff --git a/Controls/ViewPhotos.ascx.designer.vb b/Controls/ViewPhotos.ascx.designer.vb
index 5b8e852..b66ca17 100755
--- a/Controls/ViewPhotos.ascx.designer.vb
+++ b/Controls/ViewPhotos.ascx.designer.vb
@@ -1,108 +1,124 @@
'------------------------------------------------------------------------------
-'
-' This code was generated by a tool.
-' Runtime Version:2.0.50727.5448
+'
+' Codice generato da uno strumento.
'
-' Changes to this file may cause incorrect behavior and will be lost if
-' the code is regenerated.
-'
+' Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+' il codice viene rigenerato.
+'
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
-
Namespace Ventrian.SimpleGallery.Controls
Partial Public Class ViewPhotos
'''
- '''phPopupScripts control.
+ '''Controllo phPopupScripts.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phPopupScripts As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''phjQueryScripts control.
+ '''Controllo phjQueryScripts.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phjQueryScripts As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''phLightboxScripts control.
+ '''Controllo phLightboxScripts.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phLightboxScripts As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''phLightboxTop control.
+ '''Controllo phLightboxTop.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phLightboxTop As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''dlGallery control.
+ '''Controllo dlGalleryHeader.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents dlGalleryHeader As Global.System.Web.UI.WebControls.PlaceHolder
+
+ '''
+ '''Controllo dlGallery.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dlGallery As Global.System.Web.UI.WebControls.DataList
'''
- '''pnlPaging control.
+ '''Controllo dlGalleryFooter.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents dlGalleryFooter As Global.System.Web.UI.WebControls.PlaceHolder
+
+ '''
+ '''Controllo pnlPaging.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents pnlPaging As Global.System.Web.UI.WebControls.Panel
'''
- '''lnkPrev control.
+ '''Controllo lnkPrev.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents lnkPrev As Global.System.Web.UI.WebControls.HyperLink
'''
- '''lblCurrentPage control.
+ '''Controllo lblCurrentPage.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents lblCurrentPage As Global.System.Web.UI.WebControls.Label
'''
- '''lnkNext control.
+ '''Controllo lnkNext.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents lnkNext As Global.System.Web.UI.WebControls.HyperLink
'''
- '''phLightboxBottom control.
+ '''Controllo phLightboxBottom.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phLightboxBottom As Global.System.Web.UI.WebControls.PlaceHolder
End Class
diff --git a/Controls/ViewPhotos.ascx.vb b/Controls/ViewPhotos.ascx.vb
index 2a55f35..36d32c9 100755
--- a/Controls/ViewPhotos.ascx.vb
+++ b/Controls/ViewPhotos.ascx.vb
@@ -26,6 +26,8 @@ Namespace Ventrian.SimpleGallery.Controls
Private _tag As TagInfo
Private _pageNumber As Integer = 0
Private _photoTemplate As String = ""
+ Private _photoTemplateHeader As String = ""
+ Private _photoTemplateFooter As String = ""
Private _photoTemplateTokens As String()
#End Region
@@ -196,6 +198,22 @@ Namespace Ventrian.SimpleGallery.Controls
dlGallery.DataSource = objPagedDataSource
dlGallery.DataBind()
+ If dlGallery.DataSource.count > 0 Then
+ 'Carico Header
+ Dim objLiteralHeader As New Literal
+ objLiteralHeader.ID = Globals.CreateValidID("GalleryHeader")
+ objLiteralHeader.Text = _photoTemplateHeader
+ dlGalleryHeader.Controls.Add(objLiteralHeader)
+ 'fine header
+ 'Gallery Footer
+ 'Carico Footer
+ Dim objLiteralFooter As New Literal
+ objLiteralFooter.ID = Globals.CreateValidID("GalleryFooter")
+ objLiteralFooter.Text = _photoTemplateFooter
+ dlGalleryFooter.Controls.Add(objLiteralFooter)
+ 'fine footer
+ End If
+
End If
End Sub
@@ -437,7 +455,32 @@ Namespace Ventrian.SimpleGallery.Controls
DataCache.SetCache(cacheKey, objTemplate)
End If
+ Dim cacheKeyHeader As String = SimpleGalleryBase.TabModuleId.ToString() & TemplateType.PhotoInfo.ToString() & "Header"
+ Dim objTemplateHeader As TemplateInfo = CType(DataCache.GetCache(cacheKeyHeader), TemplateInfo)
+ If (objTemplateHeader Is Nothing) Then
+ Dim objTemplateController As New TemplateController
+ objTemplateHeader = objTemplateController.Get(SimpleGalleryBase.ModuleId, TemplateType.PhotoInfo.ToString() & "Header")
+ If (objTemplateHeader Is Nothing) Then
+ objTemplateHeader = New TemplateInfo
+ objTemplateHeader.Template = ""
+ End If
+ DataCache.SetCache(cacheKeyHeader, objTemplateHeader)
+ End If
+
+ Dim cacheKeyFooter As String = SimpleGalleryBase.TabModuleId.ToString() & TemplateType.PhotoInfo.ToString() & "Footer"
+ Dim objTemplateFooter As TemplateInfo = CType(DataCache.GetCache(cacheKeyFooter), TemplateInfo)
+ If (objTemplateFooter Is Nothing) Then
+ Dim objTemplateController As New TemplateController
+ objTemplateFooter = objTemplateController.Get(SimpleGalleryBase.ModuleId, TemplateType.PhotoInfo.ToString() & "Footer")
+ If (objTemplateFooter Is Nothing) Then
+ objTemplateFooter = New TemplateInfo
+ objTemplateFooter.Template = ""
+ End If
+ DataCache.SetCache(cacheKeyFooter, objTemplateFooter)
+ End If
+ _photoTemplateHeader = objTemplateHeader.Template
+ _photoTemplateFooter = objTemplateFooter.Template
_photoTemplate = objTemplate.Template
_photoTemplateTokens = objTemplate.Tokens
diff --git a/EditTemplate.ascx b/EditTemplate.ascx
index 6361aee..ffbb494 100755
--- a/EditTemplate.ascx
+++ b/EditTemplate.ascx
@@ -30,6 +30,13 @@
|
+
+
+ | Header |
+
+
+ |
|
@@ -37,6 +44,13 @@
+
+
+ | Footer |
+
+
+ |
diff --git a/EditTemplate.ascx.designer.vb b/EditTemplate.ascx.designer.vb
index 1892c93..afdf494 100755
--- a/EditTemplate.ascx.designer.vb
+++ b/EditTemplate.ascx.designer.vb
@@ -1,135 +1,151 @@
'------------------------------------------------------------------------------
-'
-' This code was generated by a tool.
-' Runtime Version:2.0.50727.4961
+'
+' Codice generato da uno strumento.
'
-' Changes to this file may cause incorrect behavior and will be lost if
-' the code is regenerated.
-'
+' Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+' il codice viene rigenerato.
+'
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
-
Namespace Ventrian.SimpleGallery
Partial Public Class EditTemplate
'''
- '''rptBreadCrumbs control.
+ '''Controllo rptBreadCrumbs.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rptBreadCrumbs As Global.System.Web.UI.WebControls.Repeater
'''
- '''dshEditTemplate control.
+ '''Controllo dshEditTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dshEditTemplate As Global.System.Web.UI.UserControl
'''
- '''tblEditTemplate control.
+ '''Controllo tblEditTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents tblEditTemplate As Global.System.Web.UI.HtmlControls.HtmlTable
'''
- '''plTemplate control.
+ '''Controllo plTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plTemplate As Global.System.Web.UI.UserControl
'''
- '''drpTemplates control.
+ '''Controllo drpTemplates.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents drpTemplates As Global.System.Web.UI.WebControls.DropDownList
'''
- '''plTemplateBody control.
+ '''Controllo txtTemplateHeader.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents txtTemplateHeader As Global.System.Web.UI.WebControls.TextBox
+
+ '''
+ '''Controllo plTemplateBody.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plTemplateBody As Global.System.Web.UI.UserControl
'''
- '''txtTemplate control.
+ '''Controllo txtTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtTemplate As Global.System.Web.UI.WebControls.TextBox
'''
- '''cmdUpdate control.
+ '''Controllo txtTemplateFooter.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents txtTemplateFooter As Global.System.Web.UI.WebControls.TextBox
+
+ '''
+ '''Controllo cmdUpdate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents cmdUpdate As Global.System.Web.UI.WebControls.LinkButton
'''
- '''cmdCancel control.
+ '''Controllo cmdCancel.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents cmdCancel As Global.System.Web.UI.WebControls.LinkButton
'''
- '''cmdRestoreDefault control.
+ '''Controllo cmdRestoreDefault.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents cmdRestoreDefault As Global.System.Web.UI.WebControls.LinkButton
'''
- '''dshTokens control.
+ '''Controllo dshTokens.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dshTokens As Global.System.Web.UI.UserControl
'''
- '''tblTokens control.
+ '''Controllo tblTokens.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents tblTokens As Global.System.Web.UI.HtmlControls.HtmlTable
'''
- '''rptTemplateTokens control.
+ '''Controllo rptTemplateTokens.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rptTemplateTokens As Global.System.Web.UI.WebControls.Repeater
End Class
diff --git a/EditTemplate.ascx.vb b/EditTemplate.ascx.vb
index c2dded8..45c9ab9 100755
--- a/EditTemplate.ascx.vb
+++ b/EditTemplate.ascx.vb
@@ -57,7 +57,22 @@ Namespace Ventrian.SimpleGallery
If (objTemplateInfo Is Nothing) Then
DisplayDefault()
Else
+ Dim objTemplateInfoHeader As TemplateInfo = objTemplateController.Get(Me.ModuleId, drpTemplates.SelectedValue & "Header")
+ Dim objTemplateInfoFooter As TemplateInfo = objTemplateController.Get(Me.ModuleId, drpTemplates.SelectedValue & "Footer")
txtTemplate.Text = objTemplateInfo.Template
+
+ If (objTemplateInfoHeader Is Nothing) Then
+ txtTemplateHeader.Text = ""
+ Else
+ txtTemplateHeader.Text = objTemplateInfoHeader.Template
+ End If
+
+ If (objTemplateInfoFooter Is Nothing) Then
+ txtTemplateFooter.Text = ""
+ Else
+ txtTemplateFooter.Text = objTemplateInfoFooter.Template
+ End If
+
End If
End Sub
@@ -91,13 +106,22 @@ Namespace Ventrian.SimpleGallery
Private Sub DisplayDefault()
Select Case CType(System.Enum.Parse(GetType(TemplateType), drpTemplates.SelectedValue), TemplateType)
-
+ Case TemplateType.AddToCart
+ txtTemplate.Text = "AddToCart"
+ txtTemplateHeader.Text = ""
+ txtTemplateFooter.Text = ""
+ Case TemplateType.ViewCart
+ txtTemplate.Text = "ViewCart"
+ txtTemplateHeader.Text = ""
+ txtTemplateFooter.Text = ""
Case TemplateType.AlbumInfo
txtTemplate.Text = Constants.DEFAULT_TEMPLATE_ALBUM_INFO
-
+ txtTemplateHeader.Text = ""
+ txtTemplateFooter.Text = ""
Case TemplateType.PhotoInfo
txtTemplate.Text = Constants.DEFAULT_TEMPLATE_PHOTO_INFO
-
+ txtTemplateHeader.Text = ""
+ txtTemplateFooter.Text = ""
Case TemplateType.AddToCart
txtTemplate.Text = "AddToCart"
@@ -156,6 +180,7 @@ Namespace Ventrian.SimpleGallery
Dim objTemplateController As New TemplateController
Dim objTemplateInfo As TemplateInfo = objTemplateController.Get(Me.ModuleId, drpTemplates.SelectedValue)
+ ''Body
If (objTemplateInfo Is Nothing) Then
objTemplateInfo = New TemplateInfo
@@ -171,9 +196,46 @@ Namespace Ventrian.SimpleGallery
objTemplateController.Update(objTemplateInfo)
End If
-
Dim cacheKey As String = TabModuleId.ToString() & objTemplateInfo.Name
DotNetNuke.Common.Utilities.DataCache.RemoveCache(cacheKey)
+ 'Header
+ objTemplateInfo = objTemplateController.Get(Me.ModuleId, drpTemplates.SelectedValue & "Header")
+
+ If (objTemplateInfo Is Nothing) Then
+ objTemplateInfo = New TemplateInfo
+
+ objTemplateInfo.ModuleID = Me.ModuleId
+ objTemplateInfo.Name = drpTemplates.SelectedValue & "Header"
+ objTemplateInfo.Template = txtTemplateHeader.Text
+
+ objTemplateController.Add(objTemplateInfo)
+ Else
+
+ objTemplateInfo.Template = txtTemplateHeader.Text
+ objTemplateController.Update(objTemplateInfo)
+
+ End If
+ cacheKey = TabModuleId.ToString() & objTemplateInfo.Name
+ DotNetNuke.Common.Utilities.DataCache.RemoveCache(cacheKey)
+ 'Footer
+ objTemplateInfo = objTemplateController.Get(Me.ModuleId, drpTemplates.SelectedValue & "Footer")
+
+ If (objTemplateInfo Is Nothing) Then
+ objTemplateInfo = New TemplateInfo
+
+ objTemplateInfo.ModuleID = Me.ModuleId
+ objTemplateInfo.Name = drpTemplates.SelectedValue & "Footer"
+ objTemplateInfo.Template = txtTemplateFooter.Text
+
+ objTemplateController.Add(objTemplateInfo)
+ Else
+
+ objTemplateInfo.Template = txtTemplateFooter.Text
+ objTemplateController.Update(objTemplateInfo)
+
+ End If
+ cacheKey = TabModuleId.ToString() & objTemplateInfo.Name
+ DotNetNuke.Common.Utilities.DataCache.RemoveCache(cacheKey)
End If
diff --git a/Entities/GallerySettings.vb b/Entities/GallerySettings.vb
index 940d46e..fd955ac 100755
--- a/Entities/GallerySettings.vb
+++ b/Entities/GallerySettings.vb
@@ -43,7 +43,25 @@ Namespace Ventrian.SimpleGallery.Entities
End If
End Get
End Property
+ Public ReadOnly Property TemplateHeader() As String
+ Get
+ If (_settings.Contains(Constants.SETTING_TEMPLATE_HEADER)) Then
+ Return _settings(Constants.SETTING_TEMPLATE_HEADER).ToString()
+ Else
+ Return ""
+ End If
+ End Get
+ End Property
+ Public ReadOnly Property TemplateFooter() As String
+ Get
+ If (_settings.Contains(Constants.SETTING_TEMPLATE_FOOTER)) Then
+ Return _settings(Constants.SETTING_TEMPLATE_FOOTER).ToString()
+ Else
+ Return ""
+ End If
+ End Get
+ End Property
Public ReadOnly Property LightboxDefaultPath() As String
Get
If (_settings.Contains(Constants.SETTING_LIGHTBOX_DEFAULT_PATH)) Then
@@ -524,7 +542,15 @@ Namespace Ventrian.SimpleGallery.Entities
End If
End Get
End Property
-
+ Public ReadOnly Property PublicMode() As PublicModeType
+ Get
+ If (_settings.Contains(Constants.SETTING_PUBLIC_MODE)) Then
+ Return CType(System.Enum.Parse(GetType(PublicModeType), _settings(Constants.SETTING_PUBLIC_MODE).ToString()), PublicModeType)
+ Else
+ Return Constants.DEFAULT_PUBLIC_MODE
+ End If
+ End Get
+ End Property
Public ReadOnly Property RandomMode() As ModeType
Get
If (_settings.Contains(Constants.SETTING_RANDOM_MODE)) Then
diff --git a/Entities/PhotoController.vb b/Entities/PhotoController.vb
index 2850e40..583e95a 100755
--- a/Entities/PhotoController.vb
+++ b/Entities/PhotoController.vb
@@ -41,7 +41,11 @@ Namespace Ventrian.SimpleGallery.Entities
Return CBO.FillCollection(DataProvider.Instance().GetRandomPhoto(moduleID, albumID, rowCount, tagID), GetType(PhotoInfo))
End Function
+ Public Function GetRandomPhotoPublicOrPrivate(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal rowCount As Integer, ByVal tagID As Integer, ByVal isPublic As Boolean) As ArrayList
+ Return CBO.FillCollection(DataProvider.Instance().GetRandomPhotoPublicOrPrivate(moduleID, albumID, rowCount, tagID, isPublic), GetType(PhotoInfo))
+
+ End Function
Public Function List(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Common.SortType, ByVal sortDirection As Common.SortDirection) As ArrayList
Dim sort As Integer = Null.NullInteger
@@ -83,6 +87,46 @@ Namespace Ventrian.SimpleGallery.Entities
End Function
+ Public Function ListLatest(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Common.SortType, ByVal sortDirection As Common.SortDirection, ByVal isPublic As Boolean) As ArrayList
+
+ Dim sort As Integer = Null.NullInteger
+
+ Select Case sortBy
+ Case Common.SortType.Name
+ sort = 0
+ Exit Select
+
+ Case Common.SortType.DateCreated
+ sort = 1
+ Exit Select
+
+ Case Common.SortType.DateApproved
+ sort = 2
+ Exit Select
+
+ Case Common.SortType.FileName
+ sort = 3
+ Exit Select
+
+ End Select
+
+ Dim sortOrder As Integer
+
+ Select Case sortDirection
+
+ Case Common.SortDirection.DESC
+ sortOrder = 0
+ Exit Select
+
+ Case Common.SortDirection.ASC
+ sortOrder = 1
+ Exit Select
+
+ End Select
+
+ Return CBO.FillCollection(DataProvider.Instance().PhotoListLatest(moduleID, albumID, isApproved, maxCount, showAll, tagID, batchID, search, sort, sortOrder, isPublic), GetType(PhotoInfo))
+
+ End Function
Public Function Add(ByVal objPhoto As PhotoInfo) As Integer
'AlbumController.ClearCache()
diff --git a/Entities/Template/TemplateTokenAlbumInfo.vb b/Entities/Template/TemplateTokenAlbumInfo.vb
index e718107..630cc54 100755
--- a/Entities/Template/TemplateTokenAlbumInfo.vb
+++ b/Entities/Template/TemplateTokenAlbumInfo.vb
@@ -11,6 +11,7 @@ Namespace Ventrian.SimpleGallery.Entities
ALBUM
ALBUMCOUNT
ALBUMLINK
+ ALBUMPHOTOURL
ALBUMWITHBORDER
DATECREATED
DESCRIPTION
diff --git a/Installs/SimpleGallery.02.05.00.zip b/Installs/SimpleGallery.02.05.00.zip
new file mode 100644
index 0000000..d651269
Binary files /dev/null and b/Installs/SimpleGallery.02.05.00.zip differ
diff --git a/Providers/DataProviders/DataProvider.vb b/Providers/DataProviders/DataProvider.vb
index 427ea63..cfdc540 100755
--- a/Providers/DataProviders/DataProvider.vb
+++ b/Providers/DataProviders/DataProvider.vb
@@ -42,7 +42,9 @@ Namespace Ventrian.SimpleGallery.Data
Public MustOverride Function GetPhoto(ByVal photoID As Integer) As IDataReader
Public MustOverride Function GetFirstFromAlbum(ByVal albumID As Integer, ByVal moduleID As Integer) As IDataReader
Public MustOverride Function GetRandomPhoto(ByVal albumID As Integer, ByVal moduleID As Integer, ByVal rowCount As Integer, ByVal tagID As Integer) As IDataReader
+ Public MustOverride Function GetRandomPhotoPublicOrPrivate(ByVal albumID As Integer, ByVal moduleID As Integer, ByVal rowCount As Integer, ByVal tagID As Integer, ByVal isPublic As Boolean) As IDataReader
Public MustOverride Function ListPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Integer, ByVal sortOrder As Integer) As IDataReader
+ Public MustOverride Function PhotoListLatest(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Integer, ByVal sortOrder As Integer, ByVal isPublic As Boolean) As IDataReader
Public MustOverride Function AddPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal name As String, ByVal description As String, ByVal fileName As String, ByVal dateCreated As DateTime, ByVal width As Integer, ByVal height As Integer, ByVal authorID As Integer, ByVal approverID As Integer, ByVal isApproved As Boolean, ByVal dateApproved As DateTime, ByVal dateUpdated As DateTime, ByVal batchID As String) As Integer
Public MustOverride Sub UpdatePhoto(ByVal photoID As Integer, ByVal moduleID As Integer, ByVal albumID As Integer, ByVal name As String, ByVal description As String, ByVal fileName As String, ByVal dateCreated As DateTime, ByVal width As Integer, ByVal height As Integer, ByVal authorID As Integer, ByVal approverID As Integer, ByVal isApproved As Boolean, ByVal dateApproved As DateTime, ByVal dateUpdated As DateTime, ByVal batchID As String)
Public MustOverride Sub DeletePhoto(ByVal photoID As Integer)
diff --git a/Providers/DataProviders/SqlDataProvider/02.05.00.SqlDataProvider b/Providers/DataProviders/SqlDataProvider/02.05.00.SqlDataProvider
new file mode 100644
index 0000000..2bfc53f
--- /dev/null
+++ b/Providers/DataProviders/SqlDataProvider/02.05.00.SqlDataProvider
@@ -0,0 +1,265 @@
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoListLatest
+ @ModuleID int,
+ @AlbumID int,
+ @IsApproved bit,
+ @MaxCount int,
+ @ShowAll bit,
+ @TagID int,
+ @BatchID nvarchar(50),
+ @SearchText nvarchar(255),
+ @SortBy int,
+ @SortOrder int,
+ @isPublic bit
+AS
+
+if( @MaxCount is not null )
+begin
+ SET ROWCOUNT @MaxCount
+end
+
+SELECT
+ Photo.[PhotoID],
+ Photo.[ModuleID],
+ Photo.[AlbumID],
+ Photo.[Name],
+ Photo.[Description],
+ Photo.[FileName],
+ Photo.[DateCreated],
+ Photo.[Width],
+ Photo.[Height],
+ Photo.[IsDefault],
+ Photo.[AuthorID],
+ Photo.[ApproverID],
+ Photo.[IsApproved],
+ Photo.[DateApproved],
+ Photo.[DateUpdated],
+ Photo.[BatchID],
+ Album.[HomeDirectory],
+ Album.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(Photo.[PhotoID]) as 'Tags'
+FROM
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo Photo INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album Album ON Photo.AlbumID = Album.AlbumID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON Photo.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON Photo.ApproverID = Approver.UserID
+WHERE
+ (Album.[isPublic] = @isPublic)
+ AND
+ (@AlbumID is null or Photo.[AlbumID] = @AlbumID)
+ AND
+ Photo.[ModuleID] = @ModuleID
+ AND
+ (@ShowAll = 1 or Photo.[IsApproved] = @IsApproved)
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND Photo.PhotoID = pt.PhotoID))
+ AND
+ (@BatchID is null or Photo.[BatchID] =@BatchID)
+ AND
+ (@SearchText is null OR (Photo.Name LIKE '%' + @SearchText + '%' OR Photo.Description LIKE '%' + @SearchText + '%' OR Photo.PhotoID IN (SELECT pt.PhotoID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Tag t INNER JOIN {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt ON t.TagID = pt.TagID WHERE t.ModuleID = @ModuleID AND t.Name LIKE '%' + @SearchText + '%')))
+ORDER BY
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 0 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 0 THEN Photo.[FileName]
+ END DESC,
+ CASE
+ WHEN @SortBy = 0 and @SortOrder = 1 THEN Photo.[Name]
+ WHEN @SortBy = 3 and @SortOrder = 1 THEN Photo.[FileName]
+ END ASC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 0 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 0 THEN Photo.[DateApproved]
+ END DESC,
+ CASE
+ WHEN @SortBy = 1 and @SortOrder = 1 THEN Photo.[DateCreated]
+ WHEN @SortBy = 2 and @SortOrder = 1 THEN Photo.[DateApproved]
+ END ASC
+GO
+
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhotoPublicOrPrivate
+ @AlbumID int,
+ @ModuleID int,
+ @Count int,
+ @TagID int,
+ @isPublic bit
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory],
+ a.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(p.[PhotoID]) as 'Tags'
+ FROM
+ #hierarchy INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a ON #hierarchy.AlbumID = a.AlbumID INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p ON a.[AlbumID] = p.[AlbumID] LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON p.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON p.ApproverID = Approver.UserID
+ WHERE
+ a.[IsPublic] = @isPublic
+ AND
+ p.[IsApproved] = 1
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND p.PhotoID = pt.PhotoID))
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+GO
+
+CREATE PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhoto
+ @AlbumID int,
+ @ModuleID int,
+ @Count int,
+ @TagID int
+AS
+
+DECLARE @level int, @line int
+
+CREATE TABLE #hierarchy(AlbumID int, level int)
+CREATE TABLE #stack (item int, level int)
+INSERT INTO #stack VALUES (@AlbumID, 1)
+SELECT @level = 1
+
+WHILE @level > 0
+BEGIN
+ IF EXISTS (SELECT * FROM #stack WHERE level = @level)
+ BEGIN
+ SELECT @AlbumID = item
+ FROM #stack
+ WHERE level = @level
+
+ insert into #hierarchy(AlbumID, level) values(@AlbumID, @level)
+
+ DELETE FROM #stack
+ WHERE level = @level
+ AND item = @AlbumID
+
+ INSERT #stack
+ SELECT AlbumID, @level + 1
+ FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album
+ WHERE parentAlbumID = @AlbumID and ModuleID = @ModuleID
+ ORDER BY Caption desc
+
+ IF @@ROWCOUNT > 0
+ SELECT @level = @level + 1
+ END
+ ELSE
+ SELECT @level = @level - 1
+END -- WHILE
+
+SET ROWCOUNT @Count
+
+ SELECT
+ p.[PhotoID],
+ p.[AlbumID],
+ p.[ModuleID],
+ p.[Name],
+ p.[Description],
+ p.[FileName],
+ p.[DateCreated],
+ p.[Width],
+ p.[Height],
+ p.[IsDefault],
+ p.[AuthorID],
+ p.[ApproverID],
+ p.[IsApproved],
+ p.[DateApproved],
+ p.[DateUpdated],
+ a.[HomeDirectory],
+ a.[Caption] as 'AlbumName',
+ Author.[FirstName] as 'AuthorFirstName',
+ Author.[LastName] as 'AuthorLastName',
+ Author.[UserName] as 'AuthorUserName',
+ Author.[DisplayName] as 'AuthorDisplayName',
+ Approver.[FirstName] as 'ApproverFirstName',
+ Approver.[LastName] as 'ApproverLastName',
+ Approver.[UserName] as 'ApproverUserName',
+ Approver.[DisplayName] as 'ApproverDisplayName',
+ {databaseOwner}{objectQualifier}Ventrian_SimpleGallery_SplitTags(p.[PhotoID]) as 'Tags'
+ FROM
+ #hierarchy INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Album a ON #hierarchy.AlbumID = a.AlbumID INNER JOIN
+ {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_Photo p ON a.[AlbumID] = p.[AlbumID] LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Author ON p.AuthorID = Author.UserID LEFT OUTER JOIN
+ {databaseOwner}{objectQualifier}Users Approver ON p.ApproverID = Approver.UserID
+ WHERE
+ p.[IsApproved] = 1
+ AND
+ (@TagID is null OR @TagID in (SELECT pt.TagID FROM {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag pt WHERE pt.TagID = @TagID AND p.PhotoID = pt.PhotoID))
+ ORDER BY
+ newID()
+
+drop table #hierarchy
+drop table #stack
+GO
diff --git a/Providers/DataProviders/SqlDataProvider/SqlDataProvider.vb b/Providers/DataProviders/SqlDataProvider/SqlDataProvider.vb
index c1ffbdc..de33027 100755
--- a/Providers/DataProviders/SqlDataProvider/SqlDataProvider.vb
+++ b/Providers/DataProviders/SqlDataProvider/SqlDataProvider.vb
@@ -20,6 +20,7 @@ Namespace Ventrian.SimpleGallery
Inherits DataProvider
+
#Region " Private Members "
Private Const ProviderType As String = "data"
@@ -103,11 +104,15 @@ Namespace Ventrian.SimpleGallery
Public Overrides Function GetRandomPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal rowCount As Integer, ByVal tagID As Integer) As IDataReader
Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_GetRandomPhoto", albumID, moduleID, rowCount, GetNull(tagID)), IDataReader)
End Function
-
+ Public Overrides Function GetRandomPhotoPublicOrPrivate(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal rowCount As Integer, ByVal tagID As Integer, ByVal isPublic As Boolean) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_GetRandomPhotoPublicOrPrivate", albumID, moduleID, rowCount, GetNull(tagID), isPublic), IDataReader)
+ End Function
Public Overrides Function ListPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Integer, ByVal sortOrder As Integer) As IDataReader
Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoList", moduleID, GetNull(albumID), isApproved, GetNull(maxCount), showAll, GetNull(tagID), GetNull(batchID), GetNull(search), sortBy, sortOrder), IDataReader)
End Function
-
+ Public Overrides Function PhotoListLatest(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal isApproved As Boolean, ByVal maxCount As Integer, ByVal showAll As Boolean, ByVal tagID As Integer, ByVal batchID As String, ByVal search As String, ByVal sortBy As Integer, ByVal sortOrder As Integer, ByVal isPublic As Boolean) As IDataReader
+ Return CType(SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoListLatest", moduleID, GetNull(albumID), isApproved, GetNull(maxCount), showAll, GetNull(tagID), GetNull(batchID), GetNull(search), sortBy, sortOrder, isPublic), IDataReader)
+ End Function
Public Overrides Function AddPhoto(ByVal moduleID As Integer, ByVal albumID As Integer, ByVal name As String, ByVal description As String, ByVal fileName As String, ByVal dateCreated As DateTime, ByVal width As Integer, ByVal height As Integer, ByVal authorID As Integer, ByVal approverID As Integer, ByVal isApproved As Boolean, ByVal dateApproved As DateTime, ByVal dateUpdated As DateTime, ByVal batchID As String) As Integer
Return CType(SqlHelper.ExecuteScalar(ConnectionString, DatabaseOwner & ObjectQualifier & "DnnForge_SimpleGallery_PhotoAdd", moduleID, albumID, name, GetNull(description), fileName, dateCreated, width, height, GetNull(authorID), GetNull(approverID), isApproved, GetNull(dateApproved), GetNull(dateUpdated), GetNull(batchID)), Integer)
End Function
diff --git a/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj b/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj
index 7e5e12b..d0affd8 100755
--- a/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj
+++ b/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj
@@ -1,4 +1,4 @@
-
+
Local
9.0.21022
@@ -31,7 +31,24 @@
Windows
- 2.0
+ 3.5
+ publish\
+ true
+ Disk
+ false
+ Foreground
+ 7
+ Days
+ false
+ false
+ true
+ 0
+ 1.0.0.%2a
+ false
+ false
+ true
+ v4.5
+
..\..\..\..\..\bin\
@@ -49,8 +66,9 @@
false
false
1
- 42016,42017,42018,42019,42032
+ 42016,42017,42018,42019,42032,42353,42354,42355
full
+ false
..\..\..\..\..\bin\
@@ -68,8 +86,9 @@
false
false
1
- 42016,42017,42018,42019,42032
+ 42016,42017,42018,42019,42032,42353,42354,42355
none
+ false
@@ -140,21 +159,28 @@
+
Code
+
+
+
+
+
+ False
+ .NET Framework 3.5 SP1
+ false
+
+
- {2C1B3FCD-EE1D-4A5E-A8D5-02C8B959AF8F}
+ {2c1b3fcd-ee1d-4a5e-a8d5-02c8b959af8f}
Ventrian.SimpleGallery
- False
-
-
-
diff --git a/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user b/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user
index 2f3668d..46bc802 100755
--- a/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user
+++ b/Providers/DataProviders/SqlDataProvider/Ventrian.SimpleGallery.SqlDataProvider.vbproj.user
@@ -1,4 +1,4 @@
-
+
7.10.3077
Debug
@@ -11,6 +11,14 @@
0
ProjectFiles
0
+
+
+
+
+
+
+ it-IT
+ false
false
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Providers/DataProviders/SqlDataProvider/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..31cc313
Binary files /dev/null and b/Providers/DataProviders/SqlDataProvider/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/DnnForge.SimpleGallery.SqlDataProvider.xml b/Providers/DataProviders/SqlDataProvider/obj/Debug/DnnForge.SimpleGallery.SqlDataProvider.xml
new file mode 100644
index 0000000..1bc075b
--- /dev/null
+++ b/Providers/DataProviders/SqlDataProvider/obj/Debug/DnnForge.SimpleGallery.SqlDataProvider.xml
@@ -0,0 +1,10 @@
+
+
+
+
+Ventrian.SimpleGallery.SqlDataProvider
+
+
+
+
+
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.dll b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.dll
new file mode 100644
index 0000000..83e72d8
Binary files /dev/null and b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.dll differ
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.pdb b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.pdb
new file mode 100644
index 0000000..5ff966b
Binary files /dev/null and b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.pdb differ
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.CopyComplete b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.CoreCompileInputs.cache b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..2deee99
--- /dev/null
+++ b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+d3ff143e5bddcb1c36b8a2668dc2777428475699
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.FileListAbsolute.txt b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.FileListAbsolute.txt
new file mode 100644
index 0000000..83fc651
--- /dev/null
+++ b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbproj.FileListAbsolute.txt
@@ -0,0 +1,12 @@
+C:\inetpub\wwwroot\Ventrian\bin\Ventrian.SimpleGallery.SqlDataProvider.dll
+C:\inetpub\wwwroot\Ventrian\bin\Ventrian.SimpleGallery.SqlDataProvider.pdb
+C:\inetpub\wwwroot\Ventrian\bin\DnnForge.SimpleGallery.SqlDataProvider.xml
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\Providers\DataProviders\SqlDataProvider\obj\Debug\Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\Providers\DataProviders\SqlDataProvider\obj\Debug\Ventrian.SimpleGallery.SqlDataProvider.vbproj.CoreCompileInputs.cache
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\Providers\DataProviders\SqlDataProvider\obj\Debug\Ventrian.SimpleGallery.SqlDataProvider.vbproj.CopyComplete
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\Providers\DataProviders\SqlDataProvider\obj\Debug\Ventrian.SimpleGallery.SqlDataProvider.dll
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\Providers\DataProviders\SqlDataProvider\obj\Debug\DnnForge.SimpleGallery.SqlDataProvider.xml
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\Providers\DataProviders\SqlDataProvider\obj\Debug\Ventrian.SimpleGallery.SqlDataProvider.pdb
+C:\inetpub\wwwroot\DNN84\bin\Ventrian.SimpleGallery.SqlDataProvider.dll
+C:\inetpub\wwwroot\DNN84\bin\Ventrian.SimpleGallery.SqlDataProvider.pdb
+C:\inetpub\wwwroot\DNN84\bin\DnnForge.SimpleGallery.SqlDataProvider.xml
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache
new file mode 100644
index 0000000..28c3911
Binary files /dev/null and b/Providers/DataProviders/SqlDataProvider/obj/Debug/Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache differ
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Debug/build.force b/Providers/DataProviders/SqlDataProvider/obj/Debug/build.force
new file mode 100644
index 0000000..e69de29
diff --git a/Providers/DataProviders/SqlDataProvider/obj/Release/Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache b/Providers/DataProviders/SqlDataProvider/obj/Release/Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache
new file mode 100644
index 0000000..d9ed93c
Binary files /dev/null and b/Providers/DataProviders/SqlDataProvider/obj/Release/Ventrian.SimpleGallery.SqlDataProvider.vbprojAssemblyReference.cache differ
diff --git a/Providers/DataProviders/SqlDataProvider/uninstall.SqlDataProvider b/Providers/DataProviders/SqlDataProvider/uninstall.SqlDataProvider
index 951b2ab..2abca05 100755
--- a/Providers/DataProviders/SqlDataProvider/uninstall.SqlDataProvider
+++ b/Providers/DataProviders/SqlDataProvider/uninstall.SqlDataProvider
@@ -85,6 +85,12 @@ GO
DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_AlbumDelete
GO
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoListLatest
+GO
+
+DROP PROCEDURE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_GetRandomPhotoPublicOrPrivate
+GO
+
DROP TABLE {databaseOwner}{objectQualifier}DnnForge_SimpleGallery_PhotoTag
GO
diff --git a/RandomPhoto.ascx b/RandomPhoto.ascx
index 69d1159..f684e31 100755
--- a/RandomPhoto.ascx
+++ b/RandomPhoto.ascx
@@ -25,10 +25,12 @@
+
+
diff --git a/RandomPhoto.ascx.designer.vb b/RandomPhoto.ascx.designer.vb
index 86036f9..96144c5 100755
--- a/RandomPhoto.ascx.designer.vb
+++ b/RandomPhoto.ascx.designer.vb
@@ -1,72 +1,88 @@
'------------------------------------------------------------------------------
-'
-' This code was generated by a tool.
-' Runtime Version:2.0.50727.5448
+'
+' Codice generato da uno strumento.
'
-' Changes to this file may cause incorrect behavior and will be lost if
-' the code is regenerated.
-'
+' Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+' il codice viene rigenerato.
+'
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
-
Namespace Ventrian.SimpleGallery
Partial Public Class RandomPhoto
'''
- '''phjQueryScripts control.
+ '''Controllo phjQueryScripts.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phjQueryScripts As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''phStyles control.
+ '''Controllo phStyles.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phStyles As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''phLightboxTop control.
+ '''Controllo phLightboxTop.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phLightboxTop As Global.System.Web.UI.WebControls.PlaceHolder
'''
- '''dlGallery control.
+ '''Controllo dlGalleryHeader.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents dlGalleryHeader As Global.System.Web.UI.WebControls.PlaceHolder
+
+ '''
+ '''Controllo dlGallery.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dlGallery As Global.System.Web.UI.WebControls.DataList
'''
- '''rptGallery control.
+ '''Controllo rptGallery.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rptGallery As Global.System.Web.UI.WebControls.Repeater
'''
- '''phLightboxBottom control.
+ '''Controllo dlGalleryFooter.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents dlGalleryFooter As Global.System.Web.UI.WebControls.PlaceHolder
+
+ '''
+ '''Controllo phLightboxBottom.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents phLightboxBottom As Global.System.Web.UI.WebControls.PlaceHolder
End Class
diff --git a/RandomPhoto.ascx.vb b/RandomPhoto.ascx.vb
index c101589..7514ce2 100755
--- a/RandomPhoto.ascx.vb
+++ b/RandomPhoto.ascx.vb
@@ -28,6 +28,8 @@ Namespace Ventrian.SimpleGallery
Private _albumID As Integer = Null.NullInteger
Private _template As String = ""
+ Private _templateHeader As String = ""
+ Private _templateFooter As String = ""
Private _templateTokens As String()
Private _linkedGallerySettings As GallerySettings
@@ -87,7 +89,22 @@ Namespace Ventrian.SimpleGallery
End If
End Function
+ Protected Function GetAlbumPhotoLink(ByVal albumID As String, ByVal homeDirectory As String) As String
+ Dim objSettings As New Hashtable
+
+ Dim objPhotoController As New PhotoController
+ Dim objPhoto As PhotoInfo
+ objPhoto = objPhotoController.GetFirstFromAlbum(Convert.ToInt32(albumID), ModuleId)
+ If objPhoto Is Nothing Then
+ Return ""
+ Else
+
+ Return objPhoto.FileName
+ End If
+
+
+ End Function
Private Function GetAlbumPath(ByVal albumID As String, ByVal moduleID As Integer, ByVal homeDirectory As String) As Hashtable
Dim objSettings As New Hashtable
@@ -263,7 +280,8 @@ Namespace Ventrian.SimpleGallery
_template = Me.GallerySettings.RandomTemplate
_templateTokens = Me.GallerySettings.RandomTemplate.Split(delimiter)
End If
-
+ _templateHeader = Me.GallerySettings.TemplateHeader
+ _templateFooter = Me.GallerySettings.TemplateFooter
End Sub
Private Function RssUrl(ByVal albumID As String) As String
@@ -433,7 +451,15 @@ Namespace Ventrian.SimpleGallery
Dim objPhotos As ArrayList
If (Me.GallerySettings.RandomMode = ModeType.Random) Then
- objPhotos = objPhotoController.GetRandomPhoto(_moduleID, _albumID, Me.GallerySettings.RandomMaxCount, Me.GallerySettings.RandomTagFilter)
+
+ Select Case Me.GallerySettings.PublicMode
+ Case PublicModeType.ShowPublic
+ objPhotos = objPhotoController.GetRandomPhotoPublicOrPrivate(_moduleID, _albumID, Me.GallerySettings.RandomMaxCount, Me.GallerySettings.RandomTagFilter, True)
+ Case PublicModeType.ShowPrivate
+ objPhotos = objPhotoController.GetRandomPhotoPublicOrPrivate(_moduleID, _albumID, Me.GallerySettings.RandomMaxCount, Me.GallerySettings.RandomTagFilter, False)
+ Case Else
+ objPhotos = objPhotoController.GetRandomPhoto(_moduleID, _albumID, Me.GallerySettings.RandomMaxCount, Me.GallerySettings.RandomTagFilter)
+ End Select
If (GallerySettings.RandomTemplateMode = TemplateModeType.Simple) Then
dlGallery.DataSource = objPhotos
@@ -443,12 +469,27 @@ Namespace Ventrian.SimpleGallery
rptGallery.DataBind()
End If
Else
- If (Me.GallerySettings.RandomMode = ModeType.Latest) Then
- objPhotos = objPhotoController.List(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.DateApproved, SortDirection.DESC)
- Else
- objPhotos = objPhotoController.List(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.Name, SortDirection.DESC)
- End If
-
+ Select Case Me.GallerySettings.PublicMode
+ Case PublicModeType.ShowPublic
+ If (Me.GallerySettings.RandomMode = ModeType.Latest) Then
+ objPhotos = objPhotoController.ListLatest(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.DateApproved, SortDirection.DESC, True)
+ Else
+ objPhotos = objPhotoController.ListLatest(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.Name, SortDirection.DESC, True)
+ End If
+ Case PublicModeType.ShowPrivate
+ If (Me.GallerySettings.RandomMode = ModeType.Latest) Then
+ objPhotos = objPhotoController.ListLatest(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.DateApproved, SortDirection.DESC, False)
+ Else
+ objPhotos = objPhotoController.ListLatest(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.Name, SortDirection.DESC, False)
+ End If
+ Case Else
+ If (Me.GallerySettings.RandomMode = ModeType.Latest) Then
+ objPhotos = objPhotoController.List(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.DateApproved, SortDirection.DESC)
+ Else
+ objPhotos = objPhotoController.List(_moduleID, _albumID, True, Null.NullInteger, False, Me.GallerySettings.RandomTagFilter, Null.NullString(), Null.NullString, SortType.Name, SortDirection.DESC)
+ End If
+ End Select
+
Dim objPagedDataSource As New PagedDataSource
objPagedDataSource.DataSource = objPhotos
@@ -506,7 +547,19 @@ Namespace Ventrian.SimpleGallery
End If
End If
-
+ 'Carico Header
+ Dim objLiteralHeader As New Literal
+ objLiteralHeader.ID = Globals.CreateValidID("GalleryHeader")
+ objLiteralHeader.Text = _templateHeader
+ dlGalleryHeader.Controls.Add(objLiteralHeader)
+ 'fine header
+ 'Gallery Footer
+ 'Carico Footer
+ Dim objLiteralFooter As New Literal
+ objLiteralFooter.ID = Globals.CreateValidID("GalleryFooter")
+ objLiteralFooter.Text = _templateFooter
+ dlGalleryFooter.Controls.Add(objLiteralFooter)
+ 'fine footer
Catch exc As Exception
ProcessModuleLoadException(Me, exc)
End Try
@@ -1084,6 +1137,19 @@ Namespace Ventrian.SimpleGallery
objLiteral.ID = Globals.CreateValidID("Article" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
objLiteral.Text = "
"
phPhoto.Controls.Add(objLiteral)
+ Case "ALBUMPHOTOURL"
+ Dim objSettings As Hashtable = GetAlbumPath(objAlbum.AlbumID.ToString(), objAlbum.ModuleID, objAlbum.HomeDirectory)
+ Dim objLiteral As New Literal
+ objLiteral.ID = Globals.CreateValidID("Article" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
+ objLiteral.Text = objSettings("AlbumPath").ToString()
+ phPhoto.Controls.Add(objLiteral)
+ 'Dim objSPhotoUrl As String = GetAlbumPhotoLink(objAlbum.AlbumID.ToString(), objAlbum.HomeDirectory)
+ 'Dim objLiteral As New Literal
+ 'objLiteral.ID = Globals.CreateValidID("Album" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
+ 'If objSPhotoUrl <> "" Then
+ ' objLiteral.Text = PortalSettings.HomeDirectory & objAlbum.HomeDirectory & "/" & objSPhotoUrl
+ ' phPhoto.Controls.Add(objLiteral)
+ 'End If
Case "ALBUMCOUNT"
Dim objLiteral As New Literal
objLiteral.ID = Globals.CreateValidID("Article" & objAlbum.AlbumID.ToString() & "-" & iPtr.ToString())
diff --git a/RandomPhotoOptions.ascx b/RandomPhotoOptions.ascx
index 7c91154..639a6a0 100755
--- a/RandomPhotoOptions.ascx
+++ b/RandomPhotoOptions.ascx
@@ -5,25 +5,29 @@
- |
- |
+ |
+ |
- |
- |
-
+ |
+ |
+
+
+ |
+ |
+
- |
- |
+ |
+ |
- |
- |
+ |
+ |
- |
+ |
-
+
|
- |
+ |
-
+
|
- |
- |
+ |
+ |
- |
+ |
-
+
|
- |
- |
+ |
+ |
@@ -77,17 +81,17 @@
- |
- |
+ |
+ |
- |
- |
+ |
+ |
- |
+ |
-
+
|
- |
+ |
-
+
|
- |
+ |
-
+
- |
- |
+ |
+ |
+
+
- |
- |
+ |
+ |
- |
- |
+ |
+ |
+
+
+
\ No newline at end of file
diff --git a/RandomPhotoOptions.ascx.designer.vb b/RandomPhotoOptions.ascx.designer.vb
index 4bc6a45..ea2a331 100755
--- a/RandomPhotoOptions.ascx.designer.vb
+++ b/RandomPhotoOptions.ascx.designer.vb
@@ -1,586 +1,638 @@
'------------------------------------------------------------------------------
-'
-' This code was generated by a tool.
-' Runtime Version:2.0.50727.5448
+'
+' Codice generato da uno strumento.
'
-' Changes to this file may cause incorrect behavior and will be lost if
-' the code is regenerated.
-'
+' Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+' il codice viene rigenerato.
+'
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
-
Namespace Ventrian.SimpleGallery
Partial Public Class RandomPhotoOptions
'''
- '''dshDetails control.
+ '''Controllo dshDetails.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dshDetails As Global.System.Web.UI.UserControl
'''
- '''tblBasic control.
+ '''Controllo tblBasic.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents tblBasic As Global.System.Web.UI.HtmlControls.HtmlTable
'''
- '''plModuleID control.
+ '''Controllo plModuleID.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plModuleID As Global.System.Web.UI.UserControl
'''
- '''drpModuleID control.
+ '''Controllo drpModuleID.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents drpModuleID As Global.System.Web.UI.WebControls.DropDownList
'''
- '''plAlbums control.
+ '''Controllo plAlbums.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plAlbums As Global.System.Web.UI.UserControl
'''
- '''drpAlbums control.
+ '''Controllo drpAlbums.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents drpAlbums As Global.System.Web.UI.WebControls.DropDownList
'''
- '''plMode control.
+ '''Controllo Label1.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents Label1 As Global.System.Web.UI.UserControl
+
+ '''
+ '''Controllo rdoPublicMode.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents rdoPublicMode As Global.System.Web.UI.WebControls.RadioButtonList
+
+ '''
+ '''Controllo plMode.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plMode As Global.System.Web.UI.UserControl
'''
- '''rdoMode control.
+ '''Controllo rdoMode.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rdoMode As Global.System.Web.UI.WebControls.RadioButtonList
'''
- '''plDisplay control.
+ '''Controllo plDisplay.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plDisplay As Global.System.Web.UI.UserControl
'''
- '''rdoDisplay control.
+ '''Controllo rdoDisplay.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rdoDisplay As Global.System.Web.UI.WebControls.RadioButtonList
'''
- '''plMaxCount control.
+ '''Controllo plMaxCount.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plMaxCount As Global.System.Web.UI.UserControl
'''
- '''txtMaxCount control.
+ '''Controllo txtMaxCount.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtMaxCount As Global.System.Web.UI.WebControls.TextBox
'''
- '''valMaxCount control.
+ '''Controllo valMaxCount.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valMaxCount As Global.System.Web.UI.WebControls.RequiredFieldValidator
'''
- '''valMaxCountIsNumber control.
+ '''Controllo valMaxCountIsNumber.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valMaxCountIsNumber As Global.System.Web.UI.WebControls.CompareValidator
'''
- '''plTagFilter control.
+ '''Controllo plTagFilter.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plTagFilter As Global.System.Web.UI.UserControl
'''
- '''txtTagFilter control.
+ '''Controllo txtTagFilter.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtTagFilter As Global.System.Web.UI.WebControls.TextBox
'''
- '''plRepeatDirection control.
+ '''Controllo plRepeatDirection.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plRepeatDirection As Global.System.Web.UI.UserControl
'''
- '''drpRepeatDirection control.
+ '''Controllo drpRepeatDirection.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents drpRepeatDirection As Global.System.Web.UI.WebControls.DropDownList
'''
- '''plRepeatColumns control.
+ '''Controllo plRepeatColumns.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plRepeatColumns As Global.System.Web.UI.UserControl
'''
- '''txtRepeatColumns control.
+ '''Controllo txtRepeatColumns.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtRepeatColumns As Global.System.Web.UI.WebControls.TextBox
'''
- '''valRepeatColumns control.
+ '''Controllo valRepeatColumns.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valRepeatColumns As Global.System.Web.UI.WebControls.RequiredFieldValidator
'''
- '''valRepeatColumnsIsNumber control.
+ '''Controllo valRepeatColumnsIsNumber.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valRepeatColumnsIsNumber As Global.System.Web.UI.WebControls.CompareValidator
'''
- '''plBorderStyle control.
+ '''Controllo plBorderStyle.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plBorderStyle As Global.System.Web.UI.UserControl
'''
- '''drpBorderStyle control.
+ '''Controllo drpBorderStyle.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents drpBorderStyle As Global.System.Web.UI.WebControls.DropDownList
'''
- '''dshAdvanced control.
+ '''Controllo dshAdvanced.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dshAdvanced As Global.System.Web.UI.UserControl
'''
- '''tblAdvanced control.
+ '''Controllo tblAdvanced.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents tblAdvanced As Global.System.Web.UI.HtmlControls.HtmlTable
'''
- '''plLaunchSlideshow control.
+ '''Controllo plLaunchSlideshow.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plLaunchSlideshow As Global.System.Web.UI.UserControl
'''
- '''chkLaunchSlideshow control.
+ '''Controllo chkLaunchSlideshow.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents chkLaunchSlideshow As Global.System.Web.UI.WebControls.CheckBox
'''
- '''plAlbumSlideshow control.
+ '''Controllo plAlbumSlideshow.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plAlbumSlideshow As Global.System.Web.UI.UserControl
'''
- '''chkAlbumSlideshow control.
+ '''Controllo chkAlbumSlideshow.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents chkAlbumSlideshow As Global.System.Web.UI.WebControls.CheckBox
'''
- '''plIncludeJQuery control.
+ '''Controllo plIncludeJQuery.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plIncludeJQuery As Global.System.Web.UI.UserControl
'''
- '''chkIncludeJQuery control.
+ '''Controllo chkIncludeJQuery.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents chkIncludeJQuery As Global.System.Web.UI.WebControls.CheckBox
'''
- '''dshCompressionSettings control.
+ '''Controllo dshCompressionSettings.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dshCompressionSettings As Global.System.Web.UI.UserControl
'''
- '''tblCompressionSettings control.
+ '''Controllo tblCompressionSettings.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents tblCompressionSettings As Global.System.Web.UI.HtmlControls.HtmlTable
'''
- '''plCompressionType control.
+ '''Controllo plCompressionType.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plCompressionType As Global.System.Web.UI.UserControl
'''
- '''drpCompressionType control.
+ '''Controllo drpCompressionType.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents drpCompressionType As Global.System.Web.UI.WebControls.DropDownList
'''
- '''plThumbnailType control.
+ '''Controllo plThumbnailType.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plThumbnailType As Global.System.Web.UI.UserControl
'''
- '''rdoThumbnailType control.
+ '''Controllo rdoThumbnailType.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rdoThumbnailType As Global.System.Web.UI.WebControls.RadioButtonList
'''
- '''trWidth control.
+ '''Controllo trWidth.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents trWidth As Global.System.Web.UI.HtmlControls.HtmlTableRow
'''
- '''plWidth control.
+ '''Controllo plWidth.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plWidth As Global.System.Web.UI.UserControl
'''
- '''txtWidth control.
+ '''Controllo txtWidth.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtWidth As Global.System.Web.UI.WebControls.TextBox
'''
- '''valWidth control.
+ '''Controllo valWidth.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valWidth As Global.System.Web.UI.WebControls.RequiredFieldValidator
'''
- '''valWidthIsNumber control.
+ '''Controllo valWidthIsNumber.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valWidthIsNumber As Global.System.Web.UI.WebControls.CompareValidator
'''
- '''trHeight control.
+ '''Controllo trHeight.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents trHeight As Global.System.Web.UI.HtmlControls.HtmlTableRow
'''
- '''plHeight control.
+ '''Controllo plHeight.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plHeight As Global.System.Web.UI.UserControl
'''
- '''txtHeight control.
+ '''Controllo txtHeight.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtHeight As Global.System.Web.UI.WebControls.TextBox
'''
- '''valHeight control.
+ '''Controllo valHeight.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valHeight As Global.System.Web.UI.WebControls.RequiredFieldValidator
'''
- '''valHeightIsNumber control.
+ '''Controllo valHeightIsNumber.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valHeightIsNumber As Global.System.Web.UI.WebControls.CompareValidator
'''
- '''trSquare control.
+ '''Controllo trSquare.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents trSquare As Global.System.Web.UI.HtmlControls.HtmlTableRow
'''
- '''plSquare control.
+ '''Controllo plSquare.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plSquare As Global.System.Web.UI.UserControl
'''
- '''txtSquare control.
+ '''Controllo txtSquare.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtSquare As Global.System.Web.UI.WebControls.TextBox
'''
- '''valSquare control.
+ '''Controllo valSquare.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valSquare As Global.System.Web.UI.WebControls.RequiredFieldValidator
'''
- '''valSquareIsNumber control.
+ '''Controllo valSquareIsNumber.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents valSquareIsNumber As Global.System.Web.UI.WebControls.CompareValidator
'''
- '''dshTemplateSettings control.
+ '''Controllo dshTemplateSettings.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents dshTemplateSettings As Global.System.Web.UI.UserControl
'''
- '''tblTemplateSettings control.
+ '''Controllo tblTemplateSettings.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents tblTemplateSettings As Global.System.Web.UI.HtmlControls.HtmlTable
'''
- '''plTemplateType control.
+ '''Controllo plTemplateType.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plTemplateType As Global.System.Web.UI.UserControl
'''
- '''rdoTemplateType control.
+ '''Controllo rdoTemplateType.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents rdoTemplateType As Global.System.Web.UI.WebControls.RadioButtonList
'''
- '''trPhotoTemplate control.
+ '''Controllo trTemplateHeader.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents trTemplateHeader As Global.System.Web.UI.HtmlControls.HtmlTableRow
+
+ '''
+ '''Controllo txtTemplateHeader.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents txtTemplateHeader As Global.System.Web.UI.WebControls.TextBox
+
+ '''
+ '''Controllo trPhotoTemplate.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents trPhotoTemplate As Global.System.Web.UI.HtmlControls.HtmlTableRow
'''
- '''plPhotoTemplate control.
+ '''Controllo plPhotoTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plPhotoTemplate As Global.System.Web.UI.UserControl
'''
- '''txtPhotoTemplate control.
+ '''Controllo txtPhotoTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtPhotoTemplate As Global.System.Web.UI.WebControls.TextBox
'''
- '''trAlbumTemplate control.
+ '''Controllo trAlbumTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents trAlbumTemplate As Global.System.Web.UI.HtmlControls.HtmlTableRow
'''
- '''plAlbumTemplate control.
+ '''Controllo plAlbumTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents plAlbumTemplate As Global.System.Web.UI.UserControl
'''
- '''txtAlbumTemplate control.
+ '''Controllo txtAlbumTemplate.
'''
'''
- '''Auto-generated field.
- '''To modify move field declaration from designer file to code-behind file.
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
'''
Protected WithEvents txtAlbumTemplate As Global.System.Web.UI.WebControls.TextBox
+
+ '''
+ '''Controllo trTemplateFooter.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents trTemplateFooter As Global.System.Web.UI.HtmlControls.HtmlTableRow
+
+ '''
+ '''Controllo txtTemplateFooter.
+ '''
+ '''
+ '''Campo generato automaticamente.
+ '''Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ '''
+ Protected WithEvents txtTemplateFooter As Global.System.Web.UI.WebControls.TextBox
End Class
End Namespace
diff --git a/RandomPhotoOptions.ascx.vb b/RandomPhotoOptions.ascx.vb
index 2624045..715d428 100755
--- a/RandomPhotoOptions.ascx.vb
+++ b/RandomPhotoOptions.ascx.vb
@@ -56,7 +56,16 @@ Namespace Ventrian.SimpleGallery
Next
End Sub
+ Private Sub BindPublicMode()
+ For Each value As Integer In System.Enum.GetValues(GetType(PublicModeType))
+ Dim li As New ListItem
+ li.Value = System.Enum.GetName(GetType(PublicModeType), value)
+ li.Text = Localization.GetString(System.Enum.GetName(GetType(PublicModeType), value), Me.LocalResourceFile)
+ rdoPublicMode.Items.Add(li)
+ Next
+
+ End Sub
Private Sub BindDisplay()
For Each value As Integer In System.Enum.GetValues(GetType(DisplayType))
@@ -162,7 +171,25 @@ Namespace Ventrian.SimpleGallery
Dim values As String() = drpModuleID.SelectedValue.Split(Convert.ToChar("-"))
- drpAlbums.DataSource = objAlbumController.List(Convert.ToInt32(values(1)), Null.NullInteger, True, True, AlbumSortType.Caption, SortDirection.ASC)
+ Dim ShowPublicOnly As Boolean = True
+
+ 'Controllo se c' un setting nel caso del primo caricamento
+ If (Settings.Contains(Constants.SETTING_PUBLIC_MODE)) Then
+ If Settings(Constants.SETTING_PUBLIC_MODE).ToString() <> PublicModeType.ShowPublic.ToString() Then
+ ShowPublicOnly = False
+ End If
+ End If
+ 'Se c' ua variazione nel valore selezionato sovrascrivo il setting
+ If Not (rdoPublicMode.SelectedValue = "") Then
+ If rdoPublicMode.SelectedValue.ToString() = PublicModeType.ShowPublic.ToString() Then
+ ShowPublicOnly = True
+ Else
+ ShowPublicOnly = False
+ End If
+ End If
+
+
+ drpAlbums.DataSource = objAlbumController.List(Convert.ToInt32(values(1)), Null.NullInteger, ShowPublicOnly, True, AlbumSortType.Caption, SortDirection.ASC)
drpAlbums.DataBind()
drpAlbums.Items.Insert(0, New ListItem(Localization.GetString("AllAlbums", Me.LocalResourceFile), "-1"))
@@ -267,6 +294,10 @@ Namespace Ventrian.SimpleGallery
rdoMode.SelectedValue = Me.GallerySettings.RandomMode.ToString()
End If
+ If Not (rdoPublicMode.Items.FindByValue(Me.GallerySettings.PublicMode.ToString()) Is Nothing) Then
+ rdoPublicMode.SelectedValue = Me.GallerySettings.PublicMode.ToString()
+ End If
+
If Not (rdoDisplay.Items.FindByValue(Me.GallerySettings.RandomDisplay.ToString()) Is Nothing) Then
rdoDisplay.SelectedValue = Me.GallerySettings.RandomDisplay.ToString()
End If
@@ -295,6 +326,9 @@ Namespace Ventrian.SimpleGallery
txtPhotoTemplate.Text = Me.GallerySettings.RandomTemplate
txtAlbumTemplate.Text = Me.GallerySettings.RandomTemplateAlbum
+ txtTemplateHeader.Text = Me.GallerySettings.TemplateHeader
+ txtTemplateFooter.Text = Me.GallerySettings.TemplateFooter
+
chkLaunchSlideshow.Checked = Me.GallerySettings.RandomLaunchSlideshow
chkAlbumSlideshow.Checked = Me.GallerySettings.RandomAlbumSlideshow
chkIncludeJQuery.Checked = Me.GallerySettings.RandomIncludeJQuery
@@ -340,6 +374,7 @@ Namespace Ventrian.SimpleGallery
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_PHOTO_ALBUM_ID, drpAlbums.SelectedValue)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_BORDER_STYLE, drpBorderStyle.SelectedValue)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_MODE, rdoMode.SelectedValue)
+ objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_PUBLIC_MODE, rdoPublicMode.SelectedValue)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_DISPLAY, rdoDisplay.SelectedValue)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_MAX_COUNT, txtMaxCount.Text)
@@ -364,6 +399,8 @@ Namespace Ventrian.SimpleGallery
End If
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_TEMPLATE, txtPhotoTemplate.Text)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_TEMPLATE_ALBUM, txtAlbumTemplate.Text)
+ objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_TEMPLATE_HEADER, txtTemplateHeader.Text)
+ objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_TEMPLATE_FOOTER, txtTemplateFooter.Text)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_COMPRESSION, drpCompressionType.SelectedValue)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_THUMBNAIL, rdoThumbnailType.SelectedValue)
objModuleController.UpdateTabModuleSetting(Me.TabModuleId, Constants.SETTING_RANDOM_LAUNCH_SLIDESHOW, chkLaunchSlideshow.Checked.ToString())
@@ -438,6 +475,7 @@ Namespace Ventrian.SimpleGallery
If (IsPostBack = False) Then
BindModes()
+ BindPublicMode()
BindDisplay()
BindRepeatDirection()
BindModules()
@@ -468,7 +506,14 @@ Namespace Ventrian.SimpleGallery
End Try
End Sub
+ Protected Sub rdoPublicMode_SelectedIndexChanged(sender As Object, e As EventArgs) Handles rdoPublicMode.SelectedIndexChanged
+ Try
+ BindAlbums()
+ Catch exc As Exception 'Module failed to load
+ ProcessModuleLoadException(Me, exc)
+ End Try
+ End Sub
#End Region
End Class
diff --git a/UpgradeLog.htm b/UpgradeLog.htm
new file mode 100644
index 0000000..b380209
Binary files /dev/null and b/UpgradeLog.htm differ
diff --git a/Ventrian.SimpleGallery.sln b/Ventrian.SimpleGallery.sln
index 0913f36..8ded465 100644
--- a/Ventrian.SimpleGallery.sln
+++ b/Ventrian.SimpleGallery.sln
@@ -1,10 +1,54 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.28010.2003
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.29911.84
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Ventrian.SimpleGallery", "Ventrian.SimpleGallery.vbproj", "{2C1B3FCD-EE1D-4A5E-A8D5-02C8B959AF8F}"
EndProject
+Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "http://www.ventrian.it", "http://www.ventrian.it", "{229E8CD2-03D6-4822-A67D-F0D00C28C853}"
+ ProjectSection(WebsiteProperties) = preProject
+ UseIISExpress = "false"
+ TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.5"
+ Debug.AspNetCompiler.VirtualPath = "/www.ventrian.it"
+ Debug.AspNetCompiler.PhysicalPath = "..\..\..\Ventrian\"
+ Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\www.ventrian.it\"
+ Debug.AspNetCompiler.Updateable = "true"
+ Debug.AspNetCompiler.ForceOverwrite = "true"
+ Debug.AspNetCompiler.FixedNames = "false"
+ Debug.AspNetCompiler.Debug = "True"
+ Release.AspNetCompiler.VirtualPath = "/www.ventrian.it"
+ Release.AspNetCompiler.PhysicalPath = "..\..\..\Ventrian\"
+ Release.AspNetCompiler.TargetPath = "PrecompiledWeb\www.ventrian.it\"
+ Release.AspNetCompiler.Updateable = "true"
+ Release.AspNetCompiler.ForceOverwrite = "true"
+ Release.AspNetCompiler.FixedNames = "false"
+ Release.AspNetCompiler.Debug = "False"
+ SlnRelativePath = "..\..\..\Ventrian\"
+ EndProjectSection
+EndProject
+Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Ventrian.SimpleGallery.SqlDataProvider", "Providers\DataProviders\SqlDataProvider\Ventrian.SimpleGallery.SqlDataProvider.vbproj", "{0A2B619D-DF3A-4480-AC7B-C216602998D7}"
+EndProject
+Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "http://www.dnn84.it", "http://www.dnn84.it", "{7C20ED2C-EC92-4508-AC79-8A7A5D516AFA}"
+ ProjectSection(WebsiteProperties) = preProject
+ UseIISExpress = "false"
+ TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.5"
+ Debug.AspNetCompiler.VirtualPath = "/www.dnn84.it"
+ Debug.AspNetCompiler.PhysicalPath = "..\..\..\DNN84\"
+ Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\www.dnn84.it\"
+ Debug.AspNetCompiler.Updateable = "true"
+ Debug.AspNetCompiler.ForceOverwrite = "true"
+ Debug.AspNetCompiler.FixedNames = "false"
+ Debug.AspNetCompiler.Debug = "True"
+ Release.AspNetCompiler.VirtualPath = "/www.dnn84.it"
+ Release.AspNetCompiler.PhysicalPath = "..\..\..\DNN84\"
+ Release.AspNetCompiler.TargetPath = "PrecompiledWeb\www.dnn84.it\"
+ Release.AspNetCompiler.Updateable = "true"
+ Release.AspNetCompiler.ForceOverwrite = "true"
+ Release.AspNetCompiler.FixedNames = "false"
+ Release.AspNetCompiler.Debug = "False"
+ SlnRelativePath = "..\..\..\DNN84\"
+ EndProjectSection
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +59,16 @@ Global
{2C1B3FCD-EE1D-4A5E-A8D5-02C8B959AF8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2C1B3FCD-EE1D-4A5E-A8D5-02C8B959AF8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2C1B3FCD-EE1D-4A5E-A8D5-02C8B959AF8F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {229E8CD2-03D6-4822-A67D-F0D00C28C853}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {229E8CD2-03D6-4822-A67D-F0D00C28C853}.Release|Any CPU.ActiveCfg = Debug|Any CPU
+ {229E8CD2-03D6-4822-A67D-F0D00C28C853}.Release|Any CPU.Build.0 = Debug|Any CPU
+ {0A2B619D-DF3A-4480-AC7B-C216602998D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0A2B619D-DF3A-4480-AC7B-C216602998D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0A2B619D-DF3A-4480-AC7B-C216602998D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0A2B619D-DF3A-4480-AC7B-C216602998D7}.Release|Any CPU.Build.0 = Release|Any CPU
+ {7C20ED2C-EC92-4508-AC79-8A7A5D516AFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {7C20ED2C-EC92-4508-AC79-8A7A5D516AFA}.Release|Any CPU.ActiveCfg = Debug|Any CPU
+ {7C20ED2C-EC92-4508-AC79-8A7A5D516AFA}.Release|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Ventrian.SimpleGallery.vbproj b/Ventrian.SimpleGallery.vbproj
index e23edb8..15e8211 100755
--- a/Ventrian.SimpleGallery.vbproj
+++ b/Ventrian.SimpleGallery.vbproj
@@ -33,7 +33,7 @@
full
true
true
- ..\..\bin\
+ ..\..\..\DNN84\bin\
Ventrian.xml
41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42353,42354,42355
@@ -142,6 +142,7 @@
+
@@ -613,6 +614,7 @@
+
MyApplicationCodeGenerator
Application.Designer.vb
diff --git a/Ventrian.SimpleGallery.vbproj.user b/Ventrian.SimpleGallery.vbproj.user
new file mode 100644
index 0000000..ceb93cd
--- /dev/null
+++ b/Ventrian.SimpleGallery.vbproj.user
@@ -0,0 +1,39 @@
+
+
+
+ Debug|Any CPU
+ ShowAllFiles
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CurrentPage
+ True
+ False
+ False
+ False
+
+
+
+
+
+
+
+
+ True
+ False
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..2b4df43
Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..e7f1675
Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/obj/Debug/Resources.resources b/obj/Debug/Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Debug/Resources.resources differ
diff --git a/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll
new file mode 100644
index 0000000..ef02430
Binary files /dev/null and b/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ
diff --git a/obj/Debug/Ventrian.SimpleGallery.dll b/obj/Debug/Ventrian.SimpleGallery.dll
new file mode 100644
index 0000000..b2e56f2
Binary files /dev/null and b/obj/Debug/Ventrian.SimpleGallery.dll differ
diff --git a/obj/Debug/Ventrian.SimpleGallery.pdb b/obj/Debug/Ventrian.SimpleGallery.pdb
new file mode 100644
index 0000000..26757f0
Binary files /dev/null and b/obj/Debug/Ventrian.SimpleGallery.pdb differ
diff --git a/obj/Debug/Ventrian.SimpleGallery.vbproj.CoreCompileInputs.cache b/obj/Debug/Ventrian.SimpleGallery.vbproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..5b35a8a
--- /dev/null
+++ b/obj/Debug/Ventrian.SimpleGallery.vbproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+12af7758ac3b41b89cc73d1e8dc3f23cd118b1b1
diff --git a/obj/Debug/Ventrian.SimpleGallery.vbproj.FileListAbsolute.txt b/obj/Debug/Ventrian.SimpleGallery.vbproj.FileListAbsolute.txt
new file mode 100644
index 0000000..f61c5e4
--- /dev/null
+++ b/obj/Debug/Ventrian.SimpleGallery.vbproj.FileListAbsolute.txt
@@ -0,0 +1,14 @@
+C:\inetpub\wwwroot\Ventrian\bin\Ventrian.SimpleGallery.dll.config
+C:\inetpub\wwwroot\Ventrian\bin\Ventrian.SimpleGallery.dll
+C:\inetpub\wwwroot\Ventrian\bin\Ventrian.SimpleGallery.pdb
+C:\inetpub\wwwroot\Ventrian\bin\Ventrian.xml
+C:\inetpub\wwwroot\DNN84\bin\Ventrian.SimpleGallery.dll.config
+C:\inetpub\wwwroot\DNN84\bin\Ventrian.SimpleGallery.dll
+C:\inetpub\wwwroot\DNN84\bin\Ventrian.SimpleGallery.pdb
+C:\inetpub\wwwroot\DNN84\bin\Ventrian.xml
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\obj\Debug\Resources.resources
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\obj\Debug\Ventrian.SimpleGallery.vbproj.GenerateResource.cache
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\obj\Debug\Ventrian.SimpleGallery.vbproj.CoreCompileInputs.cache
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\obj\Debug\Ventrian.SimpleGallery.dll
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\obj\Debug\Ventrian.xml
+C:\inetpub\wwwroot\Ventrian\DesktopModules\Simple-Gallery\obj\Debug\Ventrian.SimpleGallery.pdb
diff --git a/obj/Debug/Ventrian.SimpleGallery.vbproj.GenerateResource.cache b/obj/Debug/Ventrian.SimpleGallery.vbproj.GenerateResource.cache
new file mode 100644
index 0000000..42f0b59
Binary files /dev/null and b/obj/Debug/Ventrian.SimpleGallery.vbproj.GenerateResource.cache differ
diff --git a/obj/Debug/Ventrian.xml b/obj/Debug/Ventrian.xml
new file mode 100644
index 0000000..6faa520
--- /dev/null
+++ b/obj/Debug/Ventrian.xml
@@ -0,0 +1,5234 @@
+
+
+
+
+Ventrian.SimpleGallery
+
+
+
+
+
+ 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.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgStep control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblStep control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblStepDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblRequiresApproval control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlStep1 control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+phStep1a control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+rdoSelectExisting control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valSelectExisting control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+phStep1b control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+rdoCreateNew control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCaption control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtCaption control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valSelectNew control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlStep2 control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+litBatchID control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+fupFile control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+btnUploadFiles control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+addedPhotosRepeater control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucEditPhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlWizard control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgPrevious control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdPrevious control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgCancel control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCancel control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdNext control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgNext control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSave control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgSave control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdSave control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+rptBreadCrumbs control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblNoPhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dlGallery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdApproveSelected control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdApproveAll control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdRejectSelected control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdRejectAll control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblRejectMessage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtRejectMessage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgStep control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblTitle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucEditPhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgSave control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdSave control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+litCommandsAdd control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+litCommandsDelete control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+phBatchOperations control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plBatchOperations control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtTagsAdd control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblTagsAdd control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblTagsClear control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dlGallery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+rptBreadCrumbs control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+phSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkRSS control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgRSS control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trSeparator control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlCommandBar control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkAddNewPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkAddNewAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkApprovePhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkBulkEdit control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+Controllo dlAlbumHeader.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlAlbum.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlAlbumFooter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phPopupScripts.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phjQueryScripts.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phLightboxScripts.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phLightboxTop.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlGalleryHeader.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlGallery.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlGalleryFooter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo pnlPaging.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo lnkPrev.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo lblCurrentPage.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo lnkNext.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phLightboxBottom.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+btnSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucViewPhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSettings control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblAlbumSettingsHelp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valInvalidParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCaption control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtCaption control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valCaption control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plInheritSecurity control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkInheritSecurity control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trPermissions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPermissions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+grdAlbumPermissions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshAdvanced control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblAdvanced control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plIsPublic control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkIsPublic control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plHomeDirectory control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtHomeDirectory control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCustomize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valHomeDirectory control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trDefaultPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plDefaultPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpDefaultPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCreateDate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpCreateTimeHour control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpCreateTimeMinute control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtCreateDate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCreateCalendar control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valtxtCreateDate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdUpdate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCancel control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlDelete control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlDeleteTable control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshDelete control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblDeleteAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plDeletePhysicalFiles control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkDeletePhysicalFiles control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdDelete control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSynch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSynchronize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshSynchronize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblSynchronize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plIncludeSubFolders control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkIncludeSubFolders control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAbsoluteSync control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkAbsoluteSync control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plResizeImages control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkResizeImages control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAsynchronous control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkAsynchronous control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdSynchronize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblSynchResults control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblEditAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+grdAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblNoAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdAddAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdEditSortOrder control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdReturnToGallery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSettings control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblPhotoSettingsHelp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdEditAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+phReplace control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+litPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdReplace control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+phReplaceUpload control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+fuReplace control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkAddAsBefore control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdUploadReplace control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCancelReplace control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdUpdate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCancel control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdDelete control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdSetDefault control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblEditSortOrder control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpParentAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plChildAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblNoAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+pnlSortOrder control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lstAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblAlbumUpdated control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblMovePage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdUp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+hbtnUpHelp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdDown control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+hbtnDownHelp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblActions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdEdit control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+hbtnEditHelp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdView control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+hbtnViewHelp control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdUpdate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdReturnToGallery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblEditTag control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblTag control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdUpdate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdCancel control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdDelete control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblEditTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+grdTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblNoTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdAddTag control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+cmdReturnToGallery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+Controllo rptBreadCrumbs.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dshEditTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo tblEditTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo drpTemplates.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtTemplateHeader.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plTemplateBody.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtTemplateFooter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo cmdUpdate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo cmdCancel.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo cmdRestoreDefault.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dshTokens.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo tblTokens.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rptTemplateTokens.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+phControls control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+Controllo phjQueryScripts.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phStyles.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phLightboxTop.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlGalleryHeader.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlGallery.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rptGallery.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dlGalleryFooter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo phLightboxBottom.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dshDetails.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo tblBasic.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plModuleID.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo drpModuleID.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plAlbums.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo drpAlbums.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo Label1.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rdoPublicMode.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plMode.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rdoMode.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plDisplay.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rdoDisplay.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plMaxCount.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtMaxCount.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valMaxCount.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valMaxCountIsNumber.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plTagFilter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtTagFilter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plRepeatDirection.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo drpRepeatDirection.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plRepeatColumns.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtRepeatColumns.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valRepeatColumns.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valRepeatColumnsIsNumber.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plBorderStyle.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo drpBorderStyle.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dshAdvanced.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo tblAdvanced.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plLaunchSlideshow.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo chkLaunchSlideshow.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plAlbumSlideshow.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo chkAlbumSlideshow.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plIncludeJQuery.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo chkIncludeJQuery.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dshCompressionSettings.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo tblCompressionSettings.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plCompressionType.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo drpCompressionType.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plThumbnailType.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rdoThumbnailType.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trWidth.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plWidth.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtWidth.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valWidth.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valWidthIsNumber.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trHeight.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plHeight.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtHeight.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valHeight.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valHeightIsNumber.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trSquare.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plSquare.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtSquare.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valSquare.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo valSquareIsNumber.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo dshTemplateSettings.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo tblTemplateSettings.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plTemplateType.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo rdoTemplateType.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trTemplateHeader.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtTemplateHeader.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trPhotoTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plPhotoTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtPhotoTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trAlbumTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo plAlbumTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtAlbumTemplate.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo trTemplateFooter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+Controllo txtTemplateFooter.
+
+
+Campo generato automaticamente.
+Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+
+
+
+
+RSS class.
+
+
+Auto-generated class.
+
+
+
+
+pnlSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plModuleID control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpModuleID control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshTemplateSettings control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblTemplateSettings control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSearchTemplate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtSearchTemplate control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblButton control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblLinkButton control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblTextBox control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkDownload control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblPageCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkPreviousTop control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkNextTop control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkPrevious control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkReturnToOrigin control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkNext control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+litTitle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+CSS control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+Form1 control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkPrevious control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblPageCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkNext control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkDownload control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkClose control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lnkPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+imgPhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblName control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+TagCloud class.
+
+
+Auto-generated class.
+
+
+
+
+litCloudMarkup control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+TagCloudOptions class.
+
+
+Auto-generated class.
+
+
+
+
+plModuleID control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpModuleID control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plMaxCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtMaxCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valMaxCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valMaxCountIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+litCloudMarkup control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+divDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucViewAlbums control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucViewPhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+divViewCart control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshDetails control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblBasic control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumFilter control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpAlbumFilter control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumsPerRow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtAlbumsPerRow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumsPerRow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumsPerRowIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumSortBy control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpAlbumSortBy control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumSortDirection control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpAlbumSortDirection control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plBorderStyle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpBorderStyle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plThumbnailsPerRow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtThumbnailsPerRow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailsPerRow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailsPerRowIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPhotosPerPage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtPhotosPerPage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPhotosPerPage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPhotoPageSizeIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSortBy control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpSortBy control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSortDirection control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpSortDirection control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshAdvanced control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblAdvanced control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumDefaultPath control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtAlbumDefaultPath control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plLightboxDefaultPath control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtLightboxDefaultPath control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plEnableSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkEnableSearch control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plEnableSyndication control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkEnableSyndication control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plEnableTooltip control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkEnableTooltip control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plHideBreadCrumbs control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkHideBreadCrumbs control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plHidePager control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkHidePager control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plIncludeJQuery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkIncludeJQuery control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plIncludeViewCart control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkIncludeViewCart control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plUseAlbumAnchors control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkUseAlbumAnchors control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshCompression control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblCompression control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblResizeInstructions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plResizePhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkResizePhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCompressionType control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpCompressionType control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plImageWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtImageWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valImageWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valImageWidthIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plImageHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtImageHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valImageHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valImageHeightIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plUseWatermark control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkUseWatermark control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plWatermarkText control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtWatermarkText control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plWatermarkImage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ctlWatermarkImage control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plWatermarkPosition control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpWatermarkPosition control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblResizeAlbumInstructions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCompressionTypeAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpCompressionTypeAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plThumbnailTypeAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+rdoThumbnailTypeAlbum control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trAlbumThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtAlbumThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumThumbnailWidthIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trAlbumThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtAlbumThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumThumbnailHeightIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trAlbumThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plAlbumThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtAlbumThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valAlbumThumbnailSquareIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+lblResizePhotoInstructions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCompressionTypePhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpCompressionTypePhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plThumbnailTypePhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+rdoThumbnailTypePhoto control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailWidthIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+Comparevalidator1 control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailSquare control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valThumbnailSquareIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshSecurity control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblSecurity control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPhotoModeration control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkPhotoModeration control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPhotoPermissions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dgPhotoPermissions control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshSlideShow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblSlideShow control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideshowType control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+drpSlideshowType control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trStandardWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+Label1 control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtStandardWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valStandardWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valStandardWidthIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trPopupWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPopupWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtPopupWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPopupWidth control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPopupWidthIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trPopupHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPopupHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtPopupHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPopupHeight control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPopupHeightIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trEnableScrollbar control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plEnableScrollbar control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkEnableScrollbar control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxNextKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plNextKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtNextKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valNextKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxPreviousKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plPreviousKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtPreviousKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valPreviousKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxCloseKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plCloseKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtCloseKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valCloseKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxDownloadKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plDownloadKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtDownloadKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valDownloadKey control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxSlideInterval control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideInterval control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtSlideInterval control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valSlideInterval control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valSlideIntervalIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxHideTitle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideHideTitle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkSlideHideTitle control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxHideDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideHideDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkSlideHideDescription control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxHidePaging control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideHidePaging control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkSlideHidePaging control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxHideTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideHideTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkSlideHideTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+trLightboxHideDownload control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plSlideHideDownload control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkSlideHideDownload control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkEnableTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plRequireTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkRequireTags control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plTagCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtTagCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valTagCount control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valTagCountIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshUploader control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblUploader control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plUploaderFileSize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+txtUploaderFileSize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valUploaderFileSize control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+valUploaderFileSizeIsNumber control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plUseXmpExif control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkUseXmpExif control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+dshZip control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+tblZip control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plEnableZip control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkEnableZip control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+plIncludeSubFolders control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+chkIncludeSubFolders control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucGalleryMenu control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
+ucViewPhotos control.
+
+
+Auto-generated field.
+To modify move field declaration from designer file to code-behind file.
+
+
+
+
diff --git a/packages/Microsoft.AspNet.Mvc.5.1.1/.signature.p7s b/packages/Microsoft.AspNet.Mvc.5.1.1/.signature.p7s
new file mode 100644
index 0000000..80dff65
Binary files /dev/null and b/packages/Microsoft.AspNet.Mvc.5.1.1/.signature.p7s differ
diff --git a/packages/Microsoft.AspNet.Mvc.5.1.1/Content/Web.config.install.xdt b/packages/Microsoft.AspNet.Mvc.5.1.1/Content/Web.config.install.xdt
new file mode 100644
index 0000000..2d68ef4
--- /dev/null
+++ b/packages/Microsoft.AspNet.Mvc.5.1.1/Content/Web.config.install.xdt
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.Mvc.5.1.1/Content/Web.config.uninstall.xdt b/packages/Microsoft.AspNet.Mvc.5.1.1/Content/Web.config.uninstall.xdt
new file mode 100644
index 0000000..efc0325
--- /dev/null
+++ b/packages/Microsoft.AspNet.Mvc.5.1.1/Content/Web.config.uninstall.xdt
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.Mvc.5.1.1/Microsoft.AspNet.Mvc.5.1.1.nupkg b/packages/Microsoft.AspNet.Mvc.5.1.1/Microsoft.AspNet.Mvc.5.1.1.nupkg
new file mode 100644
index 0000000..de192be
Binary files /dev/null and b/packages/Microsoft.AspNet.Mvc.5.1.1/Microsoft.AspNet.Mvc.5.1.1.nupkg differ
diff --git a/packages/Microsoft.AspNet.Mvc.5.1.1/lib/net45/System.Web.Mvc.dll b/packages/Microsoft.AspNet.Mvc.5.1.1/lib/net45/System.Web.Mvc.dll
new file mode 100644
index 0000000..cfb0277
Binary files /dev/null and b/packages/Microsoft.AspNet.Mvc.5.1.1/lib/net45/System.Web.Mvc.dll differ
diff --git a/packages/Microsoft.AspNet.Mvc.5.1.1/lib/net45/System.Web.Mvc.xml b/packages/Microsoft.AspNet.Mvc.5.1.1/lib/net45/System.Web.Mvc.xml
new file mode 100644
index 0000000..25d9558
--- /dev/null
+++ b/packages/Microsoft.AspNet.Mvc.5.1.1/lib/net45/System.Web.Mvc.xml
@@ -0,0 +1,11126 @@
+
+
+
+ System.Web.Mvc
+
+
+
+ Represents an attribute that specifies which HTTP verbs an action method will respond to.
+
+
+ Initializes a new instance of the class by using a list of HTTP verbs that the action method will respond to.
+ The HTTP verbs that the action method will respond to.
+ The parameter is null or zero length.
+
+
+ Initializes a new instance of the class using the HTTP verbs that the action method will respond to.
+ The HTTP verbs that the action method will respond to.
+
+
+ Determines whether the specified method information is valid for the specified controller context.
+ true if the method information is valid; otherwise, false.
+ The controller context.
+ The method information.
+ The parameter is null.
+
+
+ Gets or sets the list of HTTP verbs that the action method will respond to.
+ The list of HTTP verbs that the action method will respond to.
+
+
+ Provides information about an action method, such as its name, controller, parameters, attributes, and filters.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the name of the action method.
+ The name of the action method.
+
+
+ Gets the controller descriptor.
+ The controller descriptor.
+
+
+ Executes the action method by using the specified parameters and controller context.
+ The result of executing the action method.
+ The controller context.
+ The parameters of the action method.
+
+
+ Returns an array of custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Returns an array of custom attributes that are defined for this member, identified by type.
+ An array of custom attributes, or an empty array if no custom attributes of the specified type exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+ The parameter is null.
+
+
+ Gets the filter attributes.
+ The filter attributes.
+ true to use the cache, otherwise false.
+
+
+ Returns the filters that are associated with this action method.
+ The filters that are associated with this action method.
+
+
+ Returns the parameters of the action method.
+ The parameters of the action method.
+
+
+ Returns the action-method selectors.
+ The action-method selectors.
+
+
+ Determines whether one or more instances of the specified attribute type are defined for this member.
+ true if is defined for this member; otherwise, false.
+ The type of the custom attribute.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The parameter is null.
+
+
+ Gets the unique ID for the action descriptor using lazy initialization.
+ The unique ID.
+
+
+ Provides the context for the ActionExecuted method of the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The controller context.
+ The action method descriptor.
+ true if the action is canceled.
+ The exception object.
+ The parameter is null.
+
+
+ Gets or sets the action descriptor.
+ The action descriptor.
+
+
+ Gets or sets a value that indicates that this object is canceled.
+ true if the context canceled; otherwise, false.
+
+
+ Gets or sets the exception that occurred during the execution of the action method, if any.
+ The exception that occurred during the execution of the action method.
+
+
+ Gets or sets a value that indicates whether the exception is handled.
+ true if the exception is handled; otherwise, false.
+
+
+ Gets or sets the result returned by the action method.
+ The result returned by the action method.
+
+
+ Provides the context for the ActionExecuting method of the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified controller context, action descriptor, and action-method parameters.
+ The controller context.
+ The action descriptor.
+ The action-method parameters.
+ The or parameter is null.
+
+
+ Gets or sets the action descriptor.
+ The action descriptor.
+
+
+ Gets or sets the action-method parameters.
+ The action-method parameters.
+
+
+ Gets or sets the result that is returned by the action method.
+ The result that is returned by the action method.
+
+
+ Represents the base class for filter attributes.
+
+
+ Initializes a new instance of the class.
+
+
+ Called by the ASP.NET MVC framework after the action method executes.
+ The filter context.
+
+
+ Called by the ASP.NET MVC framework before the action method executes.
+ The filter context.
+
+
+ Called by the ASP.NET MVC framework after the action result executes.
+ The filter context.
+
+
+ Called by the ASP.NET MVC framework before the action result executes.
+ The filter context.
+
+
+ Represents an attribute that is used to influence the selection of an action method.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method selection is valid for the specified controller context.
+ true if the action method selection is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Represents an attribute that is used for the name of an action.
+
+
+ Initializes a new instance of the class.
+ Name of the action.
+ The parameter is null or empty.
+
+
+ Determines whether the action name is valid within the specified controller context.
+ true if the action name is valid within the specified controller context; otherwise, false.
+ The controller context.
+ The name of the action.
+ Information about the action method.
+
+
+ Gets or sets the name of the action.
+ The name of the action.
+
+
+ Represents an attribute that affects the selection of an action method.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action name is valid in the specified controller context.
+ true if the action name is valid in the specified controller context; otherwise, false.
+ The controller context.
+ The name of the action.
+ Information about the action method.
+
+
+ Encapsulates the result of an action method and is used to perform a framework-level operation on behalf of the action method.
+
+
+ Initializes a new instance of the class.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.
+
+
+ Represents a delegate that contains the logic for selecting an action method.
+
+
+ Provides a class that implements the interface in order to support additional metadata.
+
+
+ Initializes a new instance of the class.
+ The name of the model metadata.
+ The value of the model metadata.
+
+
+ Gets the name of the additional metadata attribute.
+ The name of the of the additional metadata attribute.
+
+
+ Provides metadata to the model metadata creation process.
+ The meta data.
+
+
+ Gets the type of the of the additional metadata attribute.
+ The type of the of the additional metadata attribute.
+
+
+ Gets the value of the of the additional metadata attribute.
+ The value of the of the additional metadata attribute.
+
+
+ Represents support for rendering HTML in AJAX scenarios within a view.
+
+
+ Initializes a new instance of the class using the specified view context and view data container.
+ The view context.
+ The view data container.
+ One or both of the parameters is null.
+
+
+ Initializes a new instance of the class by using the specified view context, view data container, and route collection.
+ The view context.
+ The view data container.
+ The URL route collection.
+ One or more of the parameters is null.
+
+
+ Gets or sets the root path for the location to use for globalization script files.
+ The location of the folder where globalization script files are stored. The default location is "~/Scripts/Globalization".
+
+
+ Serializes the specified message and returns the resulting JSON-formatted string.
+ The serialized message as a JSON-formatted string.
+ The message to serialize.
+
+
+ Gets the collection of URL routes for the application.
+ The collection of routes for the application.
+
+
+ Gets the ViewBag.
+ The ViewBag.
+
+
+ Gets the context information about the view.
+ The context of the view.
+
+
+ Gets the current view data dictionary.
+ The view data dictionary.
+
+
+ Gets the view data container.
+ The view data container.
+
+
+ Represents support for rendering HTML in AJAX scenarios within a strongly typed view.
+ The type of the model.
+
+
+ Initializes a new instance of the class by using the specified view context and view data container.
+ The view context.
+ The view data container.
+
+
+ Initializes a new instance of the class by using the specified view context, view data container, and URL route collection.
+ The view context.
+ The view data container.
+ The URL route collection.
+
+
+ Gets the ViewBag.
+ The ViewBag.
+
+
+ Gets the strongly typed version of the view data dictionary.
+ The strongly typed data dictionary of the view.
+
+
+ Represents a class that extends the class by adding the ability to determine whether an HTTP request is an AJAX request.
+
+
+ Determines whether the specified HTTP request is an AJAX request.
+ true if the specified HTTP request is an AJAX request; otherwise, false.
+ The HTTP request.
+ The parameter is null (Nothing in Visual Basic).
+
+
+ Represents an attribute that marks controllers and actions to skip the during authorization.
+
+
+ Initializes a new instance of the class.
+
+
+ Allows a request to include HTML markup during model binding by skipping request validation for the property. (It is strongly recommended that your application explicitly check all models where you disable request validation in order to prevent script exploits.)
+
+
+ Initializes a new instance of the class.
+
+
+ This method supports the ASP.NET MVC validation infrastructure and is not intended to be used directly from your code.
+ The model metadata.
+
+
+ Provides a way to register one or more areas in an ASP.NET MVC application.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the name of the area to register.
+ The name of the area to register.
+
+
+ Registers all areas in an ASP.NET MVC application.
+
+
+ Registers all areas in an ASP.NET MVC application by using the specified user-defined information.
+ An object that contains user-defined information to pass to the area.
+
+
+ Registers an area in an ASP.NET MVC application using the specified area's context information.
+ Encapsulates the information that is required in order to register the area.
+
+
+ Encapsulates the information that is required in order to register an area within an ASP.NET MVC application.
+
+
+ Initializes a new instance of the class using the specified area name and routes collection.
+ The name of the area to register.
+ The collection of routes for the application.
+
+
+ Initializes a new instance of the class using the specified area name, routes collection, and user-defined data.
+ The name of the area to register.
+ The collection of routes for the application.
+ An object that contains user-defined information to pass to the area.
+
+
+ Gets the name of the area to register.
+ The name of the area to register.
+
+
+ Maps the specified URL route and associates it with the area that is specified by the property.
+ A reference to the mapped route.
+ The name of the route.
+ The URL pattern for the route.
+ The parameter is null.
+
+
+ Maps the specified URL route and associates it with the area that is specified by the property, using the specified route default values.
+ A reference to the mapped route.
+ The name of the route.
+ The URL pattern for the route.
+ An object that contains default route values.
+ The parameter is null.
+
+
+ Maps the specified URL route and associates it with the area that is specified by the property, using the specified route default values and constraint.
+ A reference to the mapped route.
+ The name of the route.
+ The URL pattern for the route.
+ An object that contains default route values.
+ A set of expressions that specify valid values for a URL parameter.
+ The parameter is null.
+
+
+ Maps the specified URL route and associates it with the area that is specified by the property, using the specified route default values, constraints, and namespaces.
+ A reference to the mapped route.
+ The name of the route.
+ The URL pattern for the route.
+ An object that contains default route values.
+ A set of expressions that specify valid values for a URL parameter.
+ An enumerable set of namespaces for the application.
+ The parameter is null.
+
+
+ Maps the specified URL route and associates it with the area that is specified by the property, using the specified route default values and namespaces.
+ A reference to the mapped route.
+ The name of the route.
+ The URL pattern for the route.
+ An object that contains default route values.
+ An enumerable set of namespaces for the application.
+ The parameter is null.
+
+
+ Maps the specified URL route and associates it with the area that is specified by the property, using the specified namespaces.
+ A reference to the mapped route.
+ The name of the route.
+ The URL pattern for the route.
+ An enumerable set of namespaces for the application.
+ The parameter is null.
+
+
+ Gets the namespaces for the application.
+ An enumerable set of namespaces for the application.
+
+
+ Gets a collection of defined routes for the application.
+ A collection of defined routes for the application.
+
+
+ Gets an object that contains user-defined information to pass to the area.
+ An object that contains user-defined information to pass to the area.
+
+
+ Provides an abstract class to implement a metadata provider.
+
+
+ Called from constructors in a derived class to initialize the class.
+
+
+ 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 model accessor.
+ The type of the model.
+ The name of the property.
+
+
+ Gets a list of attributes.
+ A list of attributes.
+ The type of the container.
+ The property descriptor.
+ The attribute container.
+
+
+ Returns a list of properties for the model.
+ A list of properties for the model.
+ The model container.
+ The type of the container.
+
+
+ Returns the metadata for the specified property using the container type and property descriptor.
+ The metadata for the specified property using the container type and property descriptor.
+ The model accessor.
+ The type of the container.
+ The property descriptor
+
+
+ Returns the metadata for the specified property using the container type and property name.
+ The metadata for the specified property using the container type and property name.
+ 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 using the type of the model.
+ The model accessor.
+ The type of the model.
+
+
+ Returns the type descriptor from the specified type.
+ The type descriptor.
+ The type.
+
+
+ Provides an abstract class for classes that implement a validation provider.
+
+
+ Called from constructors in derived classes to initialize 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 controller context.
+ The validators for the model.
+ The metadata.
+ The controller context.
+
+
+ Gets the validators for the model using the metadata, the controller context, and a list of attributes.
+ The validators for the model.
+ The metadata.
+ The controller context.
+ The list of attributes.
+
+
+ Provided for backward compatibility with ASP.NET MVC 3.
+
+
+ Initializes a new instance of the class.
+
+
+ Represents an attribute that is used to set the timeout value, in milliseconds, for an asynchronous method.
+
+
+ Initializes a new instance of the class.
+ The timeout value, in milliseconds.
+
+
+ Gets the timeout duration, in milliseconds.
+ The timeout duration, in milliseconds.
+
+
+ Called by ASP.NET before the asynchronous action method executes.
+ The filter context.
+
+
+ Encapsulates the information that is required for using an attribute.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified controller context.
+ The context within which the result is executed. The context information includes the controller, HTTP content, request context, and route data.
+
+
+ Initializes a new instance of the class using the specified controller context and action descriptor.
+ The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.
+ An object that provides information about an action method, such as its name, controller, parameters, attributes, and filters.
+
+
+ Provides information about the action method that is marked by the attribute, such as its name, controller, parameters, attributes, and filters.
+ The action descriptor for the action method that is marked by the attribute.
+
+
+ Gets or sets the result that is returned by an action method.
+ The result that is returned by an action method.
+
+
+ Represents an attribute that is used to restrict access by callers to an action method.
+
+
+ Initializes a new instance of the class.
+
+
+ When overridden, provides an entry point for custom authorization checks.
+ true if the user is authorized; otherwise, false.
+ The HTTP context, which encapsulates all HTTP-specific information about an individual HTTP request.
+ The parameter is null.
+
+
+ Processes HTTP requests that fail authorization.
+ Encapsulates the information for using . The object contains the controller, HTTP context, request context, action result, and route data.
+
+
+ Called when a process requests authorization.
+ The filter context, which encapsulates information for using .
+ The parameter is null.
+
+
+ Called when the caching module requests authorization.
+ A reference to the validation status.
+ The HTTP context, which encapsulates all HTTP-specific information about an individual HTTP request.
+ The parameter is null.
+
+
+ Gets or sets the user roles.
+ The user roles.
+
+
+ Gets the unique identifier for this attribute.
+ The unique identifier for this attribute.
+
+
+ Gets or sets the authorized users.
+ The authorized users.
+
+
+ Represents an attribute that is used to provide details about how model binding to a parameter should occur.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets a comma-delimited list of property names for which binding is not allowed.
+ The exclude list.
+
+
+ Gets or sets a comma-delimited list of property names for which binding is allowed.
+ The include list.
+
+
+ Determines whether the specified property is allowed.
+ true if the specified property is allowed; otherwise, false.
+ The name of the property.
+
+
+ Gets or sets the prefix to use when markup is rendered for binding to an action argument or to a model property.
+ The prefix to use.
+
+
+ Represents the base class for views that are compiled by the BuildManager class before being rendered by a view engine.
+
+
+ Initializes a new instance of the class using the specified controller context and view path.
+ The controller context.
+ The view path.
+
+
+ Initializes a new instance of the class using the specified controller context, view path, and view page activator.
+ Context information for the current controller. This information includes the HTTP context, request context, route data, parent action view context, and more.
+ The path to the view that will be rendered.
+ The object responsible for dynamically constructing the view page at run time.
+ The parameter is null.
+ The parameter is null or empty.
+
+
+ Renders the specified view context by using the specified the writer object.
+ Information related to rendering a view, such as view data, temporary data, and form context.
+ The writer object.
+ The parameter is null.
+ An instance of the view type could not be created.
+
+
+ When overridden in a derived class, renders the specified view context by using the specified writer object and object instance.
+ Information related to rendering a view, such as view data, temporary data, and form context.
+ The writer object.
+ An object that contains additional information that can be used in the view.
+
+
+ Gets or sets the view path.
+ The view path.
+
+
+ Provides a base class for view engines.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified view page activator.
+ The view page activator.
+
+
+ Gets a value that indicates whether a file exists in the specified virtual file system (path).
+ true if the file exists in the virtual file system; otherwise, false.
+ The controller context.
+ The virtual path.
+
+
+ Gets the view page activator.
+ The view page activator.
+
+
+ Maps a browser request to a byte array.
+
+
+ Initializes a new instance of the class.
+
+
+ Binds the model by using the specified controller context and binding context.
+ The bound data object.Implements
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ The parameter is null.
+
+
+ Provides an abstract class to implement a cached metadata provider.
+
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the cache item policy.
+ The cache item policy.
+
+
+ Gets the cache key prefix.
+ The cache key prefix.
+
+
+ When overridden in a derived class, creates the cached model metadata for the property.
+ The cached model metadata for the property.
+ The attributes.
+ The container type.
+ The model accessor.
+ The model type.
+ The property name.
+
+
+ Creates prototype metadata by applying the prototype and model access to yield the final metadata.
+ The prototype metadata.
+ The prototype.
+ The model accessor.
+
+
+ Creates a metadata prototype.
+ A metadata prototype.
+ The attributes.
+ The container type.
+ The model type.
+ The property name.
+
+
+ Gets the metadata for the properties.
+ The metadata for the properties.
+ The container.
+ The container type.
+
+
+ Returns the metadata for the specified property.
+ The metadata for the specified property.
+ The model accessor.
+ The container type.
+ The property descriptor.
+
+
+ Returns the metadata for the specified property.
+ The metadata for the specified property.
+ The model accessor.
+ The container type.
+ The property name.
+
+
+ Returns the cached metadata for the specified property using the type of the model.
+ The cached metadata for the specified property using the type of the model.
+ The model accessor.
+ The type of the container.
+
+
+ Gets the prototype cache.
+ The prototype cache.
+
+
+ Provides a container to cache attributes.
+
+
+ Initializes a new instance of the class.
+ The attributes.
+
+
+ Gets the data type.
+ The data type.
+
+
+ Gets the display.
+ The display.
+
+
+ Gets the display column.
+ The display column.
+
+
+ Gets the display format.
+ The display format.
+
+
+ Gets the display name.
+ The display name.
+
+
+ Indicates whether a data field is editable.
+ true if the field is editable; otherwise, false.
+
+
+ Gets the hidden input.
+ The hidden input.
+
+
+ Indicates whether a data field is read only.
+ true if the field is read only; otherwise, false.
+
+
+ Indicates whether a data field is required.
+ true if the field is required; otherwise, false.
+
+
+ Indicates whether a data field is scaffold.
+ true if the field is scaffold; otherwise, false.
+
+
+ Gets the UI hint.
+ The UI hint.
+
+
+ Provides a container to cache .
+
+
+ Initializes a new instance of the class using the prototype and model accessor.
+ The prototype.
+ The model accessor.
+
+
+ Initializes a new instance of the class using the provider, container type, model type, property name and attributes.
+ The provider.
+ The container type.
+ The model type.
+ The property name.
+ The attributes.
+
+
+ Gets a value that indicates whether empty strings that are posted back in forms should be converted to Nothing.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that indicates whether empty strings that are posted back in forms should be converted to Nothing.
+
+
+ Gets meta information about the data type.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ Meta information about the data type.
+
+
+ Gets the description of the model.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ The description of the model.
+
+
+ Gets the display format string for the model.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ The display format string for the model.
+
+
+ Gets the display name of the model.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ The display name of the model.
+
+
+ Gets the edit format string of the model.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ The edit format string of the model.
+
+
+ Gets a value that indicates whether the model uses a non-default edit format.
+ A value that indicates whether non-default edit format is used.
+
+
+ Gets a value that indicates whether the model object should be rendered using associated HTML elements.Gets a value that indicates whether the model object should be rendered using associated HTML elements.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that indicates whether the model object should be rendered using associated HTML elements.
+
+
+ Gets a value that indicates whether the model is read-only.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that indicates whether the model is read-only.
+
+
+ Gets a value that indicates whether the model is required.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that indicates whether the model is required.
+
+
+ Gets the string to display for null values.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ The string to display for null values.
+
+
+ Gets a value that represents order of the current metadata.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that represents order of the current metadata.
+
+
+ Gets a short display name.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A short display name.
+
+
+ Gets a value that indicates whether the property should be displayed in read-only views such as list and detail views.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that indicates whether the property should be displayed in read-only views such as list and detail views.
+
+
+ Gets or sets a value that indicates whether the model should be displayed in editable views.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ Returns .
+
+
+ Gets the simple display string for the model.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ The simple display string for the model.
+
+
+ Gets a hint that suggests what template to use for this model.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A hint that suggests what template to use for this model.
+
+
+ Gets a value that can be used as a watermark.If the value is cached, the cashed value is returned; otherwise the value is retrieved from the model metadata and stored in the cache.
+ A value that can be used as a watermark.
+
+
+ Implements the default cached model metadata provider for ASP.NET MVC.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns a container of real instances of the cached metadata class based on prototype and model accessor.
+ A container of real instances of the cached metadata class.
+ The prototype.
+ The model accessor.
+
+
+ Returns a container prototype instances of the metadata class.
+ a container prototype instances of the metadata class.
+ The attributes type.
+ The container type.
+ The model type.
+ The property name.
+
+
+ Provides a container for cached metadata.
+ he type of the container.
+
+
+ Constructor for creating real instances of the metadata class based on a prototype.
+ The provider.
+ The container type.
+ The model type.
+ The property name.
+ The prototype.
+
+
+ Constructor for creating the prototype instances of the metadata class.
+ The prototype.
+ The model accessor.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that indicates whether empty strings that are posted back in forms should be converted to null.
+ A cached value that indicates whether empty strings that are posted back in forms should be converted to null.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets meta information about the data type.
+ Meta information about the data type.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets the description of the model.
+ The description of the model.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets the display format string for the model.
+ The display format string for the model.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets the display name of the model.
+ The display name of the model.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets the edit format string of the model.
+ The edit format string of the model.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .
+ A value that indicates whether a non-default edit format is used.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that indicates whether the model object should be rendered using associated HTML elements.
+ A cached value that indicates whether the model object should be rendered using associated HTML elements.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that indicates whether the model is read-only.
+ A cached value that indicates whether the model is read-only.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that indicates whether the model is required.
+ A cached value that indicates whether the model is required.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets the cached string to display for null values.
+ The cached string to display for null values.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that represents order of the current metadata.
+ A cached value that represents order of the current metadata.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a short display name.
+ A short display name.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that indicates whether the property should be displayed in read-only views such as list and detail views.
+ A cached value that indicates whether the property should be displayed in read-only views such as list and detail views.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that indicates whether the model should be displayed in editable views.
+ A cached value that indicates whether the model should be displayed in editable views.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets the cached simple display string for the model.
+ The cached simple display string for the model.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached hint that suggests what template to use for this model.
+ A cached hint that suggests what template to use for this model.
+
+
+ This method is protected and therefore cannot be called directly. This method was designed to be overridden in a deriving class such as .Gets or sets a cached value that can be used as a watermark.
+ A cached value that can be used as a watermark.
+
+
+ Gets or sets a cached value that indicates whether empty strings that are posted back in forms should be converted to null.
+ A cached value that indicates whether empty strings that are posted back in forms should be converted to null.
+
+
+ Gets or sets meta information about the data type.
+ The meta information about the data type.
+
+
+ Gets or sets the description of the model.
+ The description of the model.
+
+
+ Gets or sets the display format string for the model.
+ The display format string for the model.
+
+
+ Gets or sets the display name of the model.
+ The display name of the model.
+
+
+ Gets or sets the edit format string of the model.
+ The edit format string of the model.
+
+
+ Gets or sets the simple display string for the model.
+ The simple display string for the model.
+
+
+ Gets or sets a value that indicates whether the model object should be rendered using associated HTML elements.
+ A value that indicates whether the model object should be rendered using associated HTML elements.
+
+
+ Gets or sets a value that indicates whether the model is read-only.
+ A value that indicates whether the model is read-only.
+
+
+ Gets or sets a value that indicates whether the model is required.
+ A value that indicates whether the model is required.
+
+
+ Gets or sets the string to display for null values.
+ The string to display for null values.
+
+
+ Gets or sets a value that represents order of the current metadata.
+ The order value of the current metadata.
+
+
+ Gets or sets the prototype cache.
+ The prototype cache.
+
+
+ Gets or sets a short display name.
+ The short display name.
+
+
+ Gets or sets a value that indicates whether the property should be displayed in read-only views such as list and detail views.
+ true if the model should be displayed in read-only views; otherwise, false.
+
+
+ Gets or sets a value that indicates whether the model should be displayed in editable views.
+ true if the model should be displayed in editable views; otherwise, false.
+
+
+ Gets or sets the simple display string for the model.
+ The simple display string for the model.
+
+
+ Gets or sets a hint that suggests what template to use for this model.
+ A hint that suggests what template to use for this model.
+
+
+ Gets or sets a value that can be used as a watermark.
+ A value that can be used as a watermark.
+
+
+ Provides a mechanism to propagates notification that model binder operations should be canceled.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns the default cancellation token.
+ The default cancellation token.Implements
+ The controller context.
+ The binding context.
+
+
+ Represents an attribute that is used to indicate that an action method should be called only as a child action.
+
+
+ Initializes a new instance of the class.
+
+
+ Called when authorization is required.
+ An object that encapsulates the information that is required in order to authorize access to the child action.
+
+
+ Represents a value provider for values from child actions.
+
+
+ Initializes a new instance of the class.
+ The controller context.
+
+
+ Retrieves a value object using the specified key.
+ The value object for the specified key.
+ The key.
+
+
+ Represents a factory for creating value provider objects for child actions.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns a object for the specified controller context.
+ A object.
+ The controller context.
+
+
+ Returns the client data-type model validators.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns the client data-type model validators.
+ The client data-type model validators.
+ The metadata.
+ The context.
+
+
+ Gets the resource class key.
+ The resource class key.
+
+
+ Provides an attribute that compares two properties of a model.
+
+
+ Initializes a new instance of the class.
+ The property to compare with the current property.
+
+
+ Applies formatting to an error message based on the data field where the compare error occurred.
+ The formatted error message.
+ The name of the field that caused the validation failure.
+
+
+ Formats the property for client validation by prepending an asterisk (*) and a dot.
+ The string "*." is prepended to the property.
+ The property.
+
+
+ Gets a list of compare-value client validation rules for the property using the specified model metadata and controller context.
+ A list of compare-value client validation rules.
+ The model metadata.
+ The controller context.
+
+
+ Determines whether the specified object is equal to the compared object.
+ null if the value of the compared property is equal to the value parameter; otherwise, a validation result that contains the error message that indicates that the comparison failed.
+ The value of the object to compare.
+ The validation context.
+
+
+ Gets the property to compare with the current property.
+ The property to compare with the current property.
+
+
+ Gets the other properties display name.
+ The other properties display name.
+
+
+ Represents a user-defined content type that is the result of an action method.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the content.
+ The content.
+
+
+ Gets or sets the content encoding.
+ The content encoding.
+
+
+ Gets or sets the type of the content.
+ The type of the content.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context within which the result is executed.
+ The parameter is null.
+
+
+ Provides methods that respond to HTTP requests that are made to an ASP.NET MVC Web site.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the action invoker for the controller.
+ The action invoker.
+
+
+ Provides asynchronous operations.
+ Returns .
+
+
+ Begins execution of the specified request context
+ Returns an IAsyncController instance.
+ The request context.
+ The asynchronous callback.
+ The state.
+
+
+ Begins to invoke the action in the current controller context.
+ Returns an IAsyncController instance.
+ The callback.
+ The state.
+
+
+ Gets or sets the binder.
+ The binder.
+
+
+ Creates a content result object by using a string.
+ The content result instance.
+ The content to write to the response.
+
+
+ Creates a content result object by using a string and the content type.
+ The content result instance.
+ The content to write to the response.
+ The content type (MIME type).
+
+
+ Creates a content result object by using a string, the content type, and content encoding.
+ The content result instance.
+ The content to write to the response.
+ The content type (MIME type).
+ The content encoding.
+
+
+ Creates an action invoker.
+ An action invoker.
+
+
+ Creates a temporary data provider.
+ A temporary data provider.
+
+
+ Gets whether to disable the asynchronous support for the controller.
+ true to disable the asynchronous support for the controller; otherwise, false.
+
+
+ Releases all resources that are used by the current instance of the class.
+
+
+ Releases unmanaged resources and optionally releases managed resources.
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+ Ends the invocation of the action in the current controller context.
+ The asynchronous result.
+
+
+ Ends the execute core.
+ The asynchronous result.
+
+
+ Invokes the action in the current controller context.
+
+
+ Creates a FileContentResult object by using the file contents and file type.
+ The file-content result object.
+ The binary content to send to the response.
+ The content type (MIME type).
+
+
+ Creates a FileContentResult object by using the file contents, content type, and the destination file name.
+ The file-content result object.
+ The binary content to send to the response.
+ The content type (MIME type).
+ The file name to use in the file-download dialog box that is displayed in the browser.
+
+
+ Creates a FileStreamResult object by using the Stream object and content type.
+ The file-content result object.
+ The stream to send to the response.
+ The content type (MIME type).
+
+
+ Creates a FileStreamResult object using the Stream object, the content type, and the target file name.
+ The file-stream result object.
+ The stream to send to the response.
+ The content type (MIME type)
+ The file name to use in the file-download dialog box that is displayed in the browser.
+
+
+ Creates a FilePathResult object by using the file name and the content type.
+ The file-stream result object.
+ The path of the file to send to the response.
+ The content type (MIME type).
+
+
+ Creates a FilePathResult object by using the file name, the content type, and the file download name.
+ The file-stream result object.
+ The path of the file to send to the response.
+ The content type (MIME type).
+ The file name to use in the file-download dialog box that is displayed in the browser.
+
+
+ Called when a request matches this controller, but no method with the specified action name is found in the controller.
+ The name of the attempted action.
+
+
+ Gets HTTP-specific information about an individual HTTP request.
+ The HTTP context.
+
+
+ Returns an instance of the class.
+ An instance of the class.
+
+
+ Returns an instance of the class.
+ An instance of the class.
+ The status description.
+
+
+ Initializes data that might not be available when the constructor is called.
+ The HTTP context and route data.
+
+
+ Creates a object.
+ The object that writes the script to the response.
+ The JavaScript code to run on the client
+
+
+ Creates a object that serializes the specified object to JavaScript Object Notation (JSON).
+ The JSON result object that serializes the specified object to JSON format. The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
+ The JavaScript object graph to serialize.
+
+
+ Creates a object that serializes the specified object to JavaScript Object Notation (JSON) format.
+ The JSON result object that serializes the specified object to JSON format.
+ The JavaScript object graph to serialize.
+ The content type (MIME type).
+
+
+ Creates a object that serializes the specified object to JavaScript Object Notation (JSON) format.
+ The JSON result object that serializes the specified object to JSON format.
+ The JavaScript object graph to serialize.
+ The content type (MIME type).
+ The content encoding.
+
+
+ Creates a object that serializes the specified object to JavaScript Object Notation (JSON) format using the content type, content encoding, and the JSON request behavior.
+ The result object that serializes the specified object to JSON format.
+ The JavaScript object graph to serialize.
+ The content type (MIME type).
+ The content encoding.
+ The JSON request behavior
+
+
+ Creates a object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified content type and JSON request behavior.
+ The result object that serializes the specified object to JSON format.
+ The JavaScript object graph to serialize.
+ The content type (MIME type).
+ The JSON request behavior
+
+
+ Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified JSON request behavior.
+ The result object that serializes the specified object to JSON format.
+ The JavaScript object graph to serialize.
+ The JSON request behavior.
+
+
+ Gets the model state dictionary object that contains the state of the model and of model-binding validation.
+ The model state dictionary.
+
+
+ Called after the action method is invoked.
+ Information about the current request and action.
+
+
+ Called before the action method is invoked.
+ Information about the current request and action.
+
+
+ Called when authorization occurs.
+ Information about the current request and action.
+
+
+ Called when authorization challenge occurs.
+ Information about the current request and action.
+
+
+ Called when authorization occurs.
+ Information about the current request and action.
+
+
+ Called when an unhandled exception occurs in the action.
+ Information about the current request and action.
+
+
+ Called after the action result that is returned by an action method is executed.
+ Information about the current request and action result.
+
+
+ Called before the action result that is returned by an action method is executed.
+ Information about the current request and action result.
+
+
+ Creates a object that renders a partial view.
+ A partial-view result object.
+
+
+ Creates a object that renders a partial view, by using the specified model.
+ A partial-view result object.
+ The model that is rendered by the partial view
+
+
+ Creates a object that renders a partial view, by using the specified view name.
+ A partial-view result object.
+ The name of the view that is rendered to the response.
+
+
+ Creates a object that renders a partial view, by using the specified view name and model.
+ A partial-view result object.
+ The name of the view that is rendered to the response.
+ The model that is rendered by the partial view
+
+
+ Gets the HTTP context profile.
+ The HTTP context profile.
+
+
+ Creates a object that redirects to the specified URL.
+ The redirect result object.
+ The URL to redirect to.
+
+
+ Returns an instance of the class with the Permanent property set to true.
+ An instance of the class with the Permanent property set to true.
+ The URL to redirect to.
+
+
+ Redirects to the specified action using the action name.
+ The redirect result object.
+ The name of the action.
+
+
+ Redirects to the specified action using the action name and route values.
+ The redirect result object.
+ The name of the action.
+ The parameters for a route.
+
+
+ Redirects to the specified action using the action name and controller name.
+ The redirect result object.
+ The name of the action.
+ The name of the controller.
+
+
+ Redirects to the specified action using the action name, controller name, and route dictionary.
+ The redirect result object.
+ The name of the action.
+ The name of the controller.
+ The parameters for a route.
+
+
+ Redirects to the specified action using the action name, controller name, and route values.
+ The redirect result object.
+ The name of the action.
+ The name of the controller.
+ The parameters for a route.
+
+
+ Redirects to the specified action using the action name and route dictionary.
+ The redirect result object.
+ The name of the action.
+ The parameters for a route.
+
+
+ Returns an instance of the class with the Permanent property set to true using the specified action name.
+ An instance of the class with the Permanent property set to true using the specified action name, controller name, and route values.
+ The action name.
+
+
+ Returns an instance of the class with the Permanent property set to true using the specified action name, and route values.
+ An instance of the class with the Permanent property set to true using the specified action name, and route values.
+ The action name.
+ The route values.
+
+
+ Returns an instance of the class with the Permanent property set to true using the specified action name, and controller name.
+ An instance of the class with the Permanent property set to true using the specified action name, and controller name.
+ The action name.
+ The controller name.
+
+
+ Returns an instance of the class with the Permanent property set to true using the specified action name, controller name, and route values.
+ An instance of the class with the Permanent property set to true using the specified action name, controller name, and route values.
+ The action name.
+ The controller name.
+ The route values.
+
+
+ Returns an instance of the class with the Permanent property set to true using the specified action name, controller name, and route values.
+ An instance of the class with the Permanent property set to true using the specified action name, controller name, and route values.
+ The action name.
+ The controller name.
+ The route values.
+
+
+ Returns an instance of the class with the Permanent property set to true using the specified action name, and route values.
+ An instance of the class with the Permanent property set to true using the specified action name, and route values.
+ The action name.
+ The route values.
+
+
+ Redirects to the specified route using the specified route values.
+ The redirect-to-route result object.
+ The parameters for a route.
+
+
+ Redirects to the specified route using the route name.
+ The redirect-to-route result object.
+ The name of the route.
+
+
+ Redirects to the specified route using the route name and route values.
+ The redirect-to-route result object.
+ The name of the route.
+ The parameters for a route.
+
+
+ Redirects to the specified route using the route name and route dictionary.
+ The redirect-to-route result object.
+ The name of the route.
+ The parameters for a route.
+
+
+ Redirects to the specified route using the route dictionary.
+ The redirect-to-route result object.
+ The parameters for a route.
+
+
+ Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route values.
+ Returns an instance of the RedirectResult class with the Permanent property set to true.
+ The route name.
+
+
+ Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name.
+ Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name.
+ The route name.
+
+
+ Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name and route values.
+ An instance of the RedirectResult class with the Permanent property set to true using the specified route name and route values.
+ The route name.
+ The route values.
+
+
+ Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name and route values.
+ An instance of the RedirectResult class with the Permanent property set to true.
+ The route name.
+ The route values.
+
+
+ Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route values.
+ An instance of the RedirectResult class with the Permanent property set to true using the specified route values.
+ The route values.
+
+
+ Gets the HttpRequestBase object for the current HTTP request.
+ The request object.
+
+
+ Gets the HttpResponseBase object for the current HTTP response.
+ The HttpResponseBase object for the current HTTP response.
+
+
+ Gets the route data for the current request.
+ The route data.
+
+
+ Gets the HttpServerUtilityBase object that provides methods that are used during Web request processing.
+ The HTTP server object.
+
+
+ Gets the HttpSessionStateBase object for the current HTTP request.
+ The HTTP session-state object for the current HTTP request.
+
+
+ This method calls the BeginExecute method.
+ The result of the operation.
+ The request context.
+ The asynchronous callback.
+ The state of the object.
+
+
+ This method calls the EndExecute method.
+ The asynchronous result of the operation.
+
+
+ This method calls the OnAuthentication method.
+ The filter context.
+
+
+ This method calls the OnAuthenticationChallenge method.
+ The filter context.
+
+
+ This method calls the OnActionExecuted method.
+ The filter context.
+
+
+ This method calls the OnActionExecuting method.
+ The filter context.
+
+
+ This method calls the OnAuthorization method.
+ The filter context.
+
+
+ This method calls the OnException method.
+ The filter context.
+
+
+ This method calls the OnResultExecuted method.
+ The filter context.
+
+
+ This method calls the OnResultExecuting method.
+ The filter context.
+
+
+ Gets the temporary-data provider object that is used to store data for the next request.
+ The temporary-data provider.
+
+
+ Updates the specified model instance using values from the controller's current value provider.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ The type of the model object.
+ The parameter or the ValueProvider property is null.
+
+
+ Updates the specified model instance using values from the controller's current value provider and a prefix.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ The type of the model object.
+ The parameter or the ValueProvider property is null.
+
+
+ Updates the specified model instance using values from the controller's current value provider, a prefix, and included properties.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ The type of the model object.
+ The parameter or the ValueProvider property is null.
+
+
+ Updates the specified model instance using values from the controller's current value provider, a prefix, a list of properties to exclude, and a list of properties to include.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the includeProperties parameter list.
+ The type of the model object.
+ The parameter or the ValueProvider property is null.
+
+
+ Updates the specified model instance using values from the value provider, a prefix, a list of properties to exclude , and a list of properties to include.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the includeProperties parameter list.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider, a prefix, and included properties.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider and a list of properties to include.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ A list of properties of the model to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the controller's current value provider and included properties.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ A list of properties of the model to update.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider and a list of properties to include.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ A list of properties of the model to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider.
+ true if the update is successful; otherwise, false.
+ The model instance to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Validates the specified model instance.
+ true if the model validation is successful; otherwise, false.
+ The model to validate.
+
+
+ Validates the specified model instance using an HTML prefix.
+ true if the model validation is successful; otherwise, false.
+ The model to validate.
+ The prefix to use when looking up values in the model provider.
+
+
+ Updates the specified model instance using values from the controller's current value provider.
+ The model instance to update.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the controller's current value provider and a prefix.
+ The model instance to update.
+ A prefix to use when looking up values in the value provider.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the controller's current value provider, a prefix, and included properties.
+ The model instance to update.
+ A prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the controller's current value provider, a prefix, a list of properties to exclude, and a list of properties to include.
+ The model instance to update.
+ A prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the includeProperties list.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider, a prefix, a list of properties to exclude, and a list of properties to include.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the includeProperties parameter list.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.
+ The model instance to update.
+ The prefix to use when looking up values in the value provider.
+ A list of properties of the model to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.
+ The model instance to update.
+ A list of properties of the model to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the controller object's current value provider.
+ The model instance to update.
+ A list of properties of the model to update.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.
+ The model instance to update.
+ A list of properties of the model to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Updates the specified model instance using values from the value provider.
+ The model instance to update.
+ A dictionary of values that is used to update the model.
+ The type of the model object.
+
+
+ Gets the URL helper object that is used to generate URLs by using routing.
+ The URL helper object.
+
+
+ Gets the user security information for the current HTTP request.
+ The user security information for the current HTTP request.
+
+
+ Validates the specified model instance.
+ The model to validate.
+
+
+ Validates the specified model instance using an HTML prefix.
+ The model to validate.
+ The prefix to use when looking up values in the model provider.
+
+
+ Creates a object that renders a view to the response.
+ The result that renders a view to the response.
+
+
+ Creates a object by using the model that renders a view to the response.
+ The view result.
+ The model that is rendered by the view.
+
+
+ Creates a object by using the view name that renders a view.
+ The view result.
+ The name of the view that is rendered to the response.
+
+
+ Creates a object that renders the specified IView object.
+ The view result.
+ The view that is rendered to the response.
+ The model that is rendered by the view.
+
+
+ Creates a object using the view name and master-page name that renders a view to the response.
+ The view result.
+ The name of the view that is rendered to the response.
+ The name of the master page or template to use when the view is rendered.
+
+
+ Creates a object using the view name, master-page name, and model that renders a view.
+ The view result.
+ The name of the view that is rendered to the response.
+ The name of the master page or template to use when the view is rendered.
+ The model that is rendered by the view.
+
+
+ Creates a object that renders the specified IView object.
+ The view result.
+ The view that is rendered to the response.
+
+
+ Creates a object that renders the specified object.
+ The view result.
+ The view that is rendered to the response.
+ The model that is rendered by the view.
+
+
+ Gets the view engine collection.
+ The view engine collection.
+
+
+ Represents a class that is responsible for invoking the action methods of a controller.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the model binders that are associated with the action.
+ The model binders that are associated with the action.
+
+
+ Creates the action result.
+ The action result object.
+ The controller context.
+ The action descriptor.
+ The action return value.
+
+
+ Finds the information about the action method.
+ Information about the action method.
+ The controller context.
+ The controller descriptor.
+ The name of the action.
+
+
+ Retrieves information about the controller by using the specified controller context.
+ Information about the controller.
+ The controller context.
+
+
+ Retrieves information about the action filters.
+ Information about the action filters.
+ The controller context.
+ The action descriptor.
+
+
+ Gets the value of the specified action-method parameter.
+ The value of the action-method parameter.
+ The controller context.
+ The parameter descriptor.
+
+
+ Gets the values of the action-method parameters.
+ The values of the action-method parameters.
+ The controller context.
+ The action descriptor.
+
+
+ Invokes the specified action by using the specified controller context.
+ The result of executing the action.
+ The controller context.
+ The name of the action to invoke.
+ The parameter is null.
+ The parameter is null or empty.
+ The thread was aborted during invocation of the action.
+ An unspecified error occurred during invocation of the action.
+
+
+ Invokes the specified action method by using the specified parameters and the controller context.
+ The result of executing the action method.
+ The controller context.
+ The action descriptor.
+ The parameters.
+
+
+ Invokes the specified action method by using the specified parameters, controller context, and action filters.
+ The context for the ActionExecuted method of the class.
+ The controller context.
+ The action filters.
+ The action descriptor.
+ The parameters.
+
+
+ Invokes the specified action result by using the specified controller context.
+ The controller context.
+ The action result.
+
+
+ Invokes the specified action result by using the specified action filters and the controller context.
+ The context for the ResultExecuted method of the class.
+ The controller context.
+ The action filters.
+ The action result.
+
+
+
+
+ Invokes the specified authorization filters by using the specified action descriptor and controller context.
+ The context for the object.
+ The controller context.
+ The authorization filters.
+ The action descriptor.
+
+
+ Invokes the specified exception filters by using the specified exception and controller context.
+ The context for the object.
+ The controller context.
+ The exception filters.
+ The exception.
+
+
+ Represents the base class for all MVC controllers.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the controller context.
+ The controller context.
+
+
+ Executes the specified request context.
+ The request context.
+ The parameter is null.
+
+
+ Executes the request.
+
+
+ Initializes the specified request context.
+ The request context.
+
+
+ Executes the specified request context.
+ The request context.
+
+
+ Gets or sets the dictionary for temporary data.
+ The dictionary for temporary data.
+
+
+ Gets or sets a value that indicates whether request validation is enabled for this request.
+ true if request validation is enabled for this request; otherwise, false. The default is true.
+
+
+ Gets or sets the value provider for the controller.
+ The value provider for the controller.
+
+
+ Gets the dynamic view data dictionary.
+ The dynamic view data dictionary.
+
+
+ Gets or sets the dictionary for view data.
+ The dictionary for the view data.
+
+
+ Represents a class that is responsible for dynamically building a controller.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the current controller builder object.
+ The current controller builder.
+
+
+ Gets the default namespaces.
+ The default namespaces.
+
+
+ Gets the associated controller factory.
+ The controller factory.
+
+
+ Sets the controller factory by using the specified type.
+ The type of the controller factory.
+ The parameter is null.
+ The controller factory cannot be assigned from the type in the parameter.
+ An error occurred while the controller factory was being set.
+
+
+ Sets the specified controller factory.
+ The controller factory.
+ The parameter is null.
+
+
+ Encapsulates information about an HTTP request that matches specified and instances.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified HTTP context, URL route data, and controller.
+ The HTTP context.
+ The route data.
+ The controller.
+
+
+ Initializes a new instance of the class by using the specified controller context.
+ The controller context.
+ The parameter is null.
+
+
+ Initializes a new instance of the class by using the specified request context and controller.
+ The request context.
+ The controller.
+ One or both parameters are null.
+
+
+ Gets or sets the controller.
+ The controller.
+
+
+ Gets the display mode.
+ The display mode.
+
+
+ Gets or sets the HTTP context.
+ The HTTP context.
+
+
+ Gets a value that indicates whether the associated action method is a child action.
+ true if the associated action method is a child action; otherwise, false.
+
+
+ Gets an object that contains the view context information for the parent action method.
+ An object that contains the view context information for the parent action method.
+
+
+ Gets or sets the request context.
+ The request context.
+
+
+ Gets or sets the URL route data.
+ The URL route data.
+
+
+ Encapsulates information that describes a controller, such as its name, type, and actions.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the name of the controller.
+ The name of the controller.
+
+
+ Gets the type of the controller.
+ The type of the controller.
+
+
+ Finds an action method by using the specified name and controller context.
+ The information about the action method.
+ The controller context.
+ The name of the action.
+
+
+ Retrieves a list of action-method descriptors in the controller.
+ A list of action-method descriptors in the controller.
+
+
+ Retrieves custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Retrieves custom attributes of a specified type that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+ The parameter is null (Nothing in Visual Basic).
+
+
+ Gets the filter attributes.
+ The filter attributes.
+ true if the cache should be used; otherwise, false.
+
+
+ Retrieves a value that indicates whether one or more instance of the specified custom attribute are defined for this member.
+ true if the is defined for this member; otherwise, false.
+ The type of the custom attribute.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The parameter is null (Nothing in Visual Basic).
+
+
+ When implemented in a derived class, gets the unique ID for the controller descriptor using lazy initialization.
+ The unique ID.
+
+
+ Adds the controller to the instance.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns the collection of controller instance filters.
+ The collection of controller instance filters.
+ The controller context.
+ The action descriptor.
+
+
+ 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.
+
+
+ Provides a container for common metadata, for the class, and for the class for a data model.
+
+
+ Initializes a new instance of the class.
+ The data-annotations model metadata provider.
+ The type of the container.
+ The model accessor.
+ The type of the model.
+ The name of the property.
+ The display column attribute.
+
+
+ Returns simple text for the model data.
+ Simple text for the model data.
+
+
+ Implements the default model metadata provider for ASP.NET MVC.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the metadata for the specified property.
+ The metadata for the property.
+ The attributes.
+ The type of the container.
+ The model accessor.
+ The type of the model.
+ The name of the property.
+
+
+ Represents the method that creates a instance.
+
+
+ Provides a model validator.
+
+
+ Initializes a new instance of the class.
+ The metadata for the model.
+ The controller context for the model.
+ The validation attribute for the model.
+
+
+ Gets the validation attribute for the model validator.
+ The validation attribute for the model validator.
+
+
+ Gets the error message for the validation failure.
+ The error message for the validation failure.
+
+
+ Retrieves a collection of client validation rules.
+ A collection of client validation rules.
+
+
+ Gets a value that indicates whether model validation is required.
+ true if model validation is required; otherwise, false.
+
+
+ Returns a list of validation error messages for the model.
+ A list of validation error messages for the model, or an empty list if no errors have occurred.
+ The container for the model.
+
+
+ Provides a model validator for a specified validation type.
+
+
+
+ Initializes a new instance of the class.
+ The metadata for the model.
+ The controller context for the model.
+ The validation attribute for the model.
+
+
+ Gets the validation attribute from the model validator.
+ The validation attribute from the model validator.
+
+
+ Implements the default validation provider for ASP.NET MVC.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets a value that indicates whether non-nullable value types are required.
+ true if non-nullable value types are required; otherwise, false.
+
+
+ Gets a list of validators.
+ A list of validators.
+ The metadata.
+ The context.
+ The list of validation 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 an adapter to provide default object validation.
+ The type of the adapter.
+
+
+ Registers an adapter factory for the default object validation provider.
+ The factory.
+
+
+ Registers an adapter to provide object validation.
+ The type of the model.
+ The type of the adapter.
+
+
+ Registers an adapter factory for the object validation provider.
+ The type of the model.
+ The factory.
+
+
+ Provides a factory for validators that are based on .
+
+
+ Provides a container for the error-information model validator.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets a list of error-information model validators.
+ A list of error-information model validators.
+ The model metadata.
+ The controller context.
+
+
+ Represents the controller factory that is registered by default.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using a controller activator.
+ An object that implements the controller activator interface.
+
+
+ Creates the specified controller by using the specified request context.
+ The controller.
+ The context of the HTTP request, which includes the HTTP context and route data.
+ The name of the controller.
+ The parameter is null.
+ The parameter is null or empty.
+
+
+ Retrieves the controller instance for the specified request context and controller type.
+ The controller instance.
+ The context of the HTTP request, which includes the HTTP context and route data.
+ The type of the controller.
+
+ is null.
+
+ cannot be assigned.
+ An instance of cannot be created.
+
+
+ Returns the controller's session behavior.
+ The controller's session behavior.
+ The request context.
+ The type of the controller.
+
+
+ Retrieves the controller type for the specified name and request context.
+ The controller type.
+ The context of the HTTP request, which includes the HTTP context and route data.
+ The name of the controller.
+
+
+ Releases the specified controller.
+ The controller to release.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the method.
+ The controller's session behavior.
+ The request context.
+ The controller name.
+
+
+ Maps a browser request to a data object. This class provides a concrete implementation of a model binder.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the model binders for the application.
+ The model binders for the application.
+
+
+ Binds the model by using the specified controller context and binding context.
+ The bound object.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ The parameter is null.
+
+
+ Binds the specified property by using the specified controller context and binding context and the specified property descriptor.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ Describes a property to be bound. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.
+
+
+ Creates the specified model type by using the specified controller context and binding context.
+ A data object of the specified type.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ The type of the model object to return.
+
+
+ Creates an index (a subindex) based on a category of components that make up a larger index, where the specified index value is an integer.
+ The name of the subindex.
+ The prefix for the subindex.
+ The index value.
+
+
+ Creates an index (a subindex) based on a category of components that make up a larger index, where the specified index value is a string.
+ The name of the subindex.
+ The prefix for the subindex.
+ The index value.
+
+
+ Creates the name of the subproperty by using the specified prefix and property name.
+ The name of the subproperty.
+ The prefix for the subproperty.
+ The name of the property.
+
+
+ Returns a set of properties that match the property filter restrictions that are established by the specified .
+ An enumerable set of property descriptors.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+
+
+ Returns the properties of the model by using the specified controller context and binding context.
+ A collection of property descriptors.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+
+
+ Returns the value of a property using the specified controller context, binding context, property descriptor, and property binder.
+ An object that represents the property value.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ The descriptor for the property to access. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.
+ An object that provides a way to bind the property.
+
+
+ Returns the descriptor object for a type that is specified by its controller context and binding context.
+ A custom type descriptor object.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+
+
+ Determines whether a data model is valid for the specified binding context.
+ true if the model is valid; otherwise, false.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ The parameter is null.
+
+
+ Called when the model is updated.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+
+
+ Called when the model is updating.
+ true if the model is updating; otherwise, false.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+
+
+ Called when the specified property is validated.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ Describes a property to be validated. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.
+ The value to set for the property.
+
+
+ Called when the specified property is validating.
+ true if the property is validating; otherwise, false.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ Describes a property being validated. The descriptor provides information such as component type, property type, and property value. It also provides methods to get or set the property value.
+ The value to set for the property.
+
+
+ Gets or sets the name of the resource file (class key) that contains localized string values.
+ The name of the resource file (class key).
+
+
+ Sets the specified property by using the specified controller context, binding context, and property value.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+ Describes a property to be set. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.
+ The value to set for the property.
+
+
+ Represents a memory cache for view locations.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified cache time span.
+ The cache time span.
+ The Ticks attribute of the parameter is set to a negative number.
+
+
+ Retrieves the default view location by using the specified HTTP context and cache key.
+ The default view location.
+ The HTTP context.
+ The cache key
+ The parameter is null.
+
+
+ Inserts the view in the specified virtual path by using the specified HTTP context, cache key, and virtual path.
+ The HTTP context.
+ The cache key.
+ The virtual path
+ The parameter is null.
+
+
+ Creates an empty view location cache.
+
+
+ Gets or sets the cache time span.
+ The cache time span.
+
+
+ Provides a registration point for dependency resolvers that implement or the Common Service Locator IServiceLocator interface.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the implementation of the dependency resolver.
+ The implementation of the dependency resolver.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ The implementation of the dependency resolver.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ The function that provides the service.
+ The function that provides the services.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ The common service locator.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ The object that implements the dependency resolver.
+
+
+ Provides a registration point for dependency resolvers using the specified service delegate and specified service collection delegates.
+ The service delegate.
+ The services delegates.
+
+
+ Provides a registration point for dependency resolvers using the provided common service locator when using a service locator interface.
+ The common service locator.
+
+
+ Provides a registration point for dependency resolvers, using the specified dependency resolver interface.
+ The dependency resolver.
+
+
+ Provides a type-safe implementation of and .
+
+
+ Resolves singly registered services that support arbitrary object creation.
+ The requested service or object.
+ The dependency resolver instance that this method extends.
+ The type of the requested service or object.
+
+
+ Resolves multiply registered services.
+ The requested services.
+ The dependency resolver instance that this method extends.
+ The type of the requested services.
+
+
+ Represents the base class for value providers whose values come from a collection that implements the interface.
+ The type of the value.
+
+
+ Initializes a new instance of the class.
+ The name/value pairs that are used to initialize the value provider.
+ Information about a specific culture, such as the names of the culture, the writing system, and the calendar used.
+ The parameter is null.
+
+
+ Determines whether the collection contains the specified prefix.
+ true if the collection contains the specified prefix; otherwise, false.
+ The prefix to search for.
+ The parameter is null.
+
+
+ Gets the keys from the prefix.
+ The keys from the prefix.
+ the prefix.
+
+
+ Returns a value object using the specified key and controller context.
+ The value object for the specified key.
+ The key of the value object to retrieve.
+ The parameter is null.
+
+
+ Provides an empty metadata provider for data models that do not require metadata.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a new instance of the class.
+ A new instance of the class.
+ The attributes.
+ The type of the container.
+ The model accessor.
+ The type of the model.
+ The name of the model.
+
+
+ Provides an empty validation provider for models that do not require a validator.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the empty model validator.
+ The empty model validator.
+ The metadata.
+ The context.
+
+
+ Represents a result that does nothing, such as a controller action method that returns nothing.
+
+
+ Initializes a new instance of the class.
+
+
+ Executes the specified result context.
+ The result context.
+
+
+ Provides the context for using the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class for the specified exception by using the specified controller context.
+ The controller context.
+ The exception.
+ The parameter is null.
+
+
+ Gets or sets the exception object.
+ The exception object.
+
+
+ Gets or sets a value that indicates whether the exception has been handled.
+ true if the exception has been handled; otherwise, false.
+
+
+ Gets or sets the action result.
+ The action result.
+
+
+ Provides a helper class to get the model name from an expression.
+
+
+ Gets the model name from a lambda expression.
+ The model name.
+ The expression.
+
+
+ Gets the model name from a string expression.
+ The model name.
+ The expression.
+
+
+ Provides a container for client-side field validation metadata.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the name of the data field.
+ The name of the data field.
+
+
+ Gets or sets a value that indicates whether the validation message contents should be replaced with the client validation error.
+ true if the validation message contents should be replaced with the client validation error; otherwise, false.
+
+
+ Gets or sets the validator message ID.
+ The validator message ID.
+
+
+ Gets the client validation rules.
+ The client validation rules.
+
+
+ Sends the contents of a binary file to the response.
+
+
+ Initializes a new instance of the class by using the specified file contents and content type.
+ The byte array to send to the response.
+ The content type to use for the response.
+ The parameter is null.
+
+
+ The binary content to send to the response.
+ The file contents.
+
+
+ Writes the file content to the response.
+ The response.
+
+
+ Sends the contents of a file to the response.
+
+
+ Initializes a new instance of the class by using the specified file name and content type.
+ The name of the file to send to the response.
+ The content type of the response.
+ The parameter is null or empty.
+
+
+ Gets or sets the path of the file that is sent to the response.
+ The path of the file that is sent to the response.
+
+
+ Writes the file to the response.
+ The response.
+
+
+ Represents a base class that is used to send binary file content to the response.
+
+
+ Initializes a new instance of the class.
+ The type of the content.
+ The parameter is null or empty.
+
+
+ Gets the content type to use for the response.
+ The type of the content.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context within which the result is executed.
+ The parameter is null.
+
+
+ Gets or sets the content-disposition header so that a file-download dialog box is displayed in the browser with the specified file name.
+ The name of the file.
+
+
+ Writes the file to the response.
+ The response.
+
+
+ Sends binary content to the response by using a instance.
+
+
+ Initializes a new instance of the class.
+ The stream to send to the response.
+ The content type to use for the response.
+ The parameter is null.
+
+
+ Gets the stream that will be sent to the response.
+ The file stream.
+
+
+ Writes the file to the response.
+ The response.
+
+
+ Represents a metadata class that contains a reference to the implementation of one or more of the filter interfaces, the filter's order, and the filter's scope.
+
+
+ Initializes a new instance of the class.
+ The instance.
+ The scope.
+ The order.
+
+
+ Represents a constant that is used to specify the default ordering of filters.
+
+
+ Gets the instance of this class.
+ The instance of this class.
+
+
+ Gets the order in which the filter is applied.
+ The order in which the filter is applied.
+
+
+ Gets the scope ordering of the filter.
+ The scope ordering of the filter.
+
+
+ Represents the base class for action and result filter attributes.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets a value that indicates whether more than one instance of the filter attribute can be specified.
+ true if more than one instance of the filter attribute can be specified; otherwise, false.
+
+
+ Gets or sets the order in which the action filters are executed.
+ The order in which the action filters are executed.
+
+
+ Defines a filter provider for filter attributes.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class and optionally caches attribute instances.
+ true to cache attribute instances; otherwise, false.
+
+
+ Gets a collection of custom action attributes.
+ A collection of custom action attributes.
+ The controller context.
+ The action descriptor.
+
+
+ Gets a collection of controller attributes.
+ A collection of controller attributes.
+ The controller context.
+ The action descriptor.
+
+
+ Aggregates the filters from all of the filter providers into one collection.
+ The collection filters from all of the filter providers.
+ The controller context.
+ The action descriptor.
+
+
+ Encapsulates information about the available action filters.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified filters collection.
+ The filters collection.
+
+
+ Gets all the action filters in the application.
+ The action filters.
+
+
+ Gets all the authentication filters in the application.
+ The list of authentication filters.
+
+
+ Gets all the authorization filters in the application.
+ The authorization filters.
+
+
+ Gets all the exception filters in the application.
+ The exception filters.
+
+
+ Gets all the result filters in the application.
+ The result filters.
+
+
+ Represents the collection of filter providers for the application.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class with specified list of filter provider.
+ The list of filter providers.
+
+
+ Removes all elements from the collection.
+
+
+ Returns the collection of filter providers.
+ The collection of filter providers.
+ The controller context.
+ The action descriptor.
+
+
+ Inserts an element into the collection at the specified index.
+ The zero-based index at which item should be inserted.
+ The object to insert. The value can be null for reference types.
+
+
+ Removes the element at the specified index of the collection
+ The zero-based index of the element to remove.
+
+
+ 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. The value can be null for reference types.
+
+
+ Provides a registration point for filters.
+
+
+ Provides a registration point for filters.
+ The collection of filters.
+
+
+ Defines values that specify the order in which ASP.NET MVC filters run within the same filter type and filter order.
+
+
+ Specifies an order before and after .
+
+
+ Specifies an order before and after .
+
+
+ Specifies first.
+
+
+ Specifies an order before and after .
+
+
+ Specifies last.
+
+
+ Contains the form value providers for the application.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The collection.
+ The parameter is null.
+
+
+ Gets the specified value provider.
+ The value provider.
+ The name of the value provider to get.
+ The parameter is null or empty.
+
+
+ Gets a value that indicates whether the value provider contains an entry that has the specified prefix.
+ true if the value provider contains an entry that has the specified prefix; otherwise, false.
+ The prefix to look for.
+
+
+ Gets a value from a value provider using the specified key.
+ A value from a value provider.
+ The key.
+
+
+ Returns a dictionary that contains the value providers.
+ A dictionary of value providers.
+
+
+ Encapsulates information that is required in order to validate and process the input data from an HTML form.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the field validators for the form.
+ A dictionary of field validators for the form.
+
+
+ Gets or sets the form identifier.
+ The form identifier.
+
+
+ Returns a serialized object that contains the form identifier and field-validation values for the form.
+ A serialized object that contains the form identifier and field-validation values for the form.
+
+
+ Returns the validation value for the specified input field.
+ The value to validate the field input with.
+ The name of the field to retrieve the validation value for.
+ The parameter is either null or empty.
+
+
+ Returns the validation value for the specified input field and a value that indicates what to do if the validation value is not found.
+ The value to validate the field input with.
+ The name of the field to retrieve the validation value for.
+ true to create a validation value if one is not found; otherwise, false.
+ The parameter is either null or empty.
+
+
+ Returns a value that indicates whether the specified field has been rendered in the form.
+ true if the field has been rendered; otherwise, false.
+ The field name.
+
+
+ Sets a value that indicates whether the specified field has been rendered in the form.
+ The field name.
+ true to specify that the field has been rendered in the form; otherwise, false.
+
+
+ Determines whether client validation errors should be dynamically added to the validation summary.
+ true if client validation errors should be added to the validation summary; otherwise, false.
+
+
+ Gets or sets the identifier for the validation summary.
+ The identifier for the validation summary.
+
+
+ Enumerates the HTTP request types for a form.
+
+
+ Specifies a GET request.
+
+
+ Specifies a POST request.
+
+
+ Represents a value provider for form values that are contained in a object.
+
+
+ Initializes a new instance of the class.
+ An object that encapsulates information about the current HTTP request.
+
+
+ Represents a class that is responsible for creating a new instance of a form-value provider object.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns a form-value provider object for the specified controller context.
+ A form-value provider object.
+ An object that encapsulates information about the current HTTP request.
+ The parameter is null.
+
+
+ Represents a class that contains all the global filters.
+
+
+ Initializes a new instance of the class.
+
+
+ Adds the specified filter to the global filter collection.
+ The filter.
+
+
+ Adds the specified filter to the global filter collection using the specified filter run order.
+ The filter.
+ The filter run order.
+
+
+ Removes all filters from the global filter collection.
+
+
+ Determines whether a filter is in the global filter collection.
+ true if is found in the global filter collection; otherwise, false.
+ The filter.
+
+
+ Gets the number of filters in the global filter collection.
+ The number of filters in the global filter collection.
+
+
+ Returns an enumerator that iterates through the global filter collection.
+ An enumerator that iterates through the global filter collection.
+
+
+ Removes all the filters that match the specified filter.
+ The filter to remove.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ An enumerator that iterates through the global filter collection.
+
+
+ This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ An enumerator that iterates through the global filter collection.
+ The controller context.
+ The action descriptor.
+
+
+ Represents the global filter collection.
+
+
+ Gets or sets the global filter collection.
+ The global filter collection.
+
+
+ Represents an attribute that is used to handle an exception that is thrown by an action method.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the type of the exception.
+ The type of the exception.
+
+
+ Gets or sets the master view for displaying exception information.
+ The master view.
+
+
+ Called when an exception occurs.
+ The action-filter context.
+ The parameter is null.
+
+
+ Gets the unique identifier for this attribute.
+ The unique identifier for this attribute.
+
+
+ Gets or sets the page view for displaying exception information.
+ The page view.
+
+
+ Encapsulates information for handling an error that was thrown by an action method.
+
+
+ Initializes a new instance of the class.
+ The exception.
+ The name of the controller.
+ The name of the action.
+ The parameter is null.
+ The or parameter is null or empty.
+
+
+ Gets or sets the name of the action that was executing when the exception was thrown.
+ The name of the action.
+
+
+ Gets or sets the name of the controller that contains the action method that threw the exception.
+ The name of the controller.
+
+
+ Gets or sets the exception object.
+ The exception object.
+
+
+ Represents an attribute that is used to indicate whether a property or field value should be rendered as a hidden input element.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets a value that indicates whether to display the value of the hidden input element.
+ true if the value should be displayed; otherwise, false.
+
+
+ Enumerates the date rendering mode for HTML5.
+
+
+ The current culture formatting.
+
+
+ The RFC 3339 formatting.
+
+
+ Represents support for rendering HTML controls in a view.
+
+
+ Initializes a new instance of the class by using the specified view context and view data container.
+ The view context.
+ The view data container.
+ The or the viewDataContainer parameter is null.
+
+
+ Initializes a new instance of the class by using the specified view context, view data container, and route collection.
+ The view context.
+ The view data container.
+ The route collection.
+ One or more parameters is null.
+
+
+ Replaces underscore characters (_) with hyphens (-) in the specified HTML attributes.
+ The HTML attributes with underscore characters replaced by hyphens.
+ The HTML attributes.
+
+
+ Generates a hidden form field (anti-forgery token) that is validated when the form is submitted.
+ The generated form field (anti-forgery token).
+
+
+ Generates a hidden form field (anti-forgery token) that is validated when the form is submitted. The field value is generated using the specified salt value.
+ The generated form field (anti-forgery token).
+ The salt value, which can be any non-empty string.
+
+
+ Generates a hidden form field (anti-forgery token) that is validated when the form is submitted. The field value is generated using the specified salt value, domain, and path.
+ The generated form field (anti-forgery token).
+ The salt value, which can be any non-empty string.
+ The application domain.
+ The virtual path.
+
+
+ Converts the specified attribute value to an HTML-encoded string.
+ The HTML-encoded string. If the value parameter is null or empty, this method returns an empty string.
+ The object to encode.
+
+
+ Converts the specified attribute value to an HTML-encoded string.
+ The HTML-encoded string. If the value parameter is null or empty, this method returns an empty string.
+ The string to encode.
+
+
+ Gets or sets a value that indicates whether client validation is enabled.
+ true if enable client validation is enabled; otherwise, false.
+
+
+ Enables input validation that is performed by using client script in the browser.
+
+
+ Enables or disables client validation.
+ true to enable client validation; otherwise, false.
+
+
+ Enables or disables unobtrusive JavaScript.
+
+
+ Enables or disables unobtrusive JavaScript.
+ true to enable unobtrusive JavaScript; otherwise, false.
+
+
+ Converts the value of the specified object to an HTML-encoded string.
+ The HTML-encoded string.
+ The object to encode.
+
+
+ Converts the specified string to an HTML-encoded string.
+ The HTML-encoded string.
+ The string to encode.
+
+
+ Formats the value.
+ The formatted value.
+ The value.
+ The format string.
+
+
+ Creates an HTML element ID using the specified element name.
+ The ID of the HTML element.
+ The name of the HTML element.
+ The name parameter is null.
+
+
+ Creates an HTML element ID using the specified element name and a string that replaces dots in the name.
+ The ID of the HTML element.
+ The name of the HTML element.
+ The string that replaces dots (.) in the name parameter.
+ The name parameter or the idAttributeDotReplacement parameter is null.
+
+
+ Generates an HTML anchor element (a element) that links to the specified action method, and enables the user to specify the communication protocol, name of the host, and a URL fragment.
+ An HTML element that links to the specified action method.
+ The context of the HTTP request.
+ The collection of URL routes.
+ The text caption to display for the link.
+ The name of the route that is used to return a virtual path.
+ The name of the action method.
+ The name of the controller.
+ The communication protocol, such as HTTP or HTTPS. If this parameter is null, the protocol defaults to HTTP.
+ The name of the host.
+ The fragment identifier.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes for the element.
+
+
+ Generates an HTML anchor element (a element) that links to the specified action method.
+ An HTML element that links to the specified action method.
+ The context of the HTTP request.
+ The collection of URL routes.
+ The text caption to display for the link.
+ The name of the route that is used to return a virtual path.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes for the element.
+
+
+ Generates an HTML anchor element (a element) that links to the specified URL route, and enables the user to specify the communication protocol, name of the host, and a URL fragment.
+ An HTML element that links to the specified URL route.
+ The context of the HTTP request.
+ The collection of URL routes.
+ The text caption to display for the link.
+ The name of the route that is used to return a virtual path.
+ The communication protocol, such as HTTP or HTTPS. If this parameter is null, the protocol defaults to HTTP.
+ The name of the host.
+ The fragment identifier.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes for the element.
+
+
+ Generates an HTML anchor element (a element) that links to the specified URL route.
+ An HTML element that links to the specified URL route.
+ The context of the HTTP request.
+ The collection of URL routes.
+ The text caption to display for the link.
+ The name of the route that is used to return a virtual path.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes for the element.
+
+
+ Returns the HTTP method that handles form input (GET or POST) as a string.
+ The form method string, either "get" or "post".
+ The HTTP method that handles the form.
+
+
+ Returns the HTML input control type as a string.
+ The input type string ("checkbox", "hidden", "password", "radio", or "text").
+ The enumerated input type.
+
+
+ Gets the collection of unobtrusive JavaScript validation attributes using the specified HTML name attribute.
+ The collection of unobtrusive JavaScript validation attributes.
+ The HTML name attribute.
+
+
+ Gets the collection of unobtrusive JavaScript validation attributes using the specified HTML name attribute and model metadata.
+ The collection of unobtrusive JavaScript validation attributes.
+ The HTML name attribute.
+ The model metadata.
+
+
+ Gets or sets the HTML5 date rendering mode.
+ The HTML5 date rendering mode.
+
+
+ Returns a hidden input element that identifies the override method for the specified HTTP data-transfer method that was used by the client.
+ The override method that uses the HTTP data-transfer method that was used by the client.
+ The HTTP data-transfer method that was used by the client (DELETE, HEAD, or PUT).
+ The httpVerb parameter is not "PUT", "DELETE", or "HEAD".
+
+
+ Returns a hidden input element that identifies the override method for the specified verb that represents the HTTP data-transfer method used by the client.
+ The override method that uses the verb that represents the HTTP data-transfer method used by the client.
+ The verb that represents the HTTP data-transfer method used by the client.
+ The httpVerb parameter is not "PUT", "DELETE", or "HEAD".
+
+
+ Gets or sets the character that replaces periods in the ID attribute of an element.
+ The character that replaces periods in the ID attribute of an element.
+
+
+ Returns markup that is not HTML encoded.
+ The HTML markup without encoding.
+ The HTML markup.
+
+
+ Returns markup that is not HTML encoded.
+ The HTML markup without encoding.
+ The HTML markup.
+
+
+ Gets or sets the collection of routes for the application.
+ The collection of routes for the application.
+
+
+ Gets or sets a value that indicates whether unobtrusive JavaScript is enabled.
+ true if unobtrusive JavaScript is enabled; otherwise, false.
+
+
+ The name of the CSS class that is used to style an input field when a validation error occurs.
+
+
+ The name of the CSS class that is used to style an input field when the input is valid.
+
+
+ The name of the CSS class that is used to style the error message when a validation error occurs.
+
+
+ The name of the CSS class that is used to style the validation message when the input is valid.
+
+
+ The name of the CSS class that is used to style validation summary error messages.
+
+
+ The name of the CSS class that is used to style the validation summary when the input is valid.
+
+
+ Gets the view bag.
+ The view bag.
+
+
+ Gets or sets the context information about the view.
+ The context of the view.
+
+
+ Gets the current view data dictionary.
+ The view data dictionary.
+
+
+ Gets or sets the view data container.
+ The view data container.
+
+
+ Represents support for rendering HTML controls in a strongly typed view.
+ The type of the model.
+
+
+ Initializes a new instance of the class by using the specified view context and view data container.
+ The view context.
+ The view data container.
+
+
+ Initializes a new instance of the class by using the specified view context, view data container, and route collection.
+ The view context.
+ The view data container.
+ The route collection.
+
+
+ Gets the view bag.
+ The view bag.
+
+
+ Gets the strongly typed view data dictionary.
+ The strongly typed view data dictionary.
+
+
+ Represents an attribute that is used to restrict an action method so that the method handles only HTTP DELETE requests.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method delete request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Represents a value provider to use with values that come from a collection of HTTP files.
+
+
+ Initializes a new instance of the class.
+ An object that encapsulates information about the current HTTP request.
+
+
+ Represents a class that is responsible for creating a new instance of an HTTP file collection value provider object.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns a value provider object for the specified controller context.
+ An HTTP file collection value provider.
+ An object that encapsulates information about the HTTP request.
+ The parameter is null.
+
+
+ Represents an attribute that is used to restrict an action method so that the method handles only HTTP GET requests.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method get request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Specifies that the HTTP request must be the HTTP HEAD method.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Defines an object that is used to indicate that the requested resource was not found.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using a status description.
+ The status description.
+
+
+ Represents an attribute that is used to restrict an action method so that the method handles only HTTP OPTIONS requests.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Represents an attribute that is used to restrict an action method so that the method handles only HTTP PATCH requests.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Represents an attribute that is used to restrict an action method so that the method handles only HTTP POST requests.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method post request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Binds a model to a posted file.
+
+
+ Initializes a new instance of the class.
+
+
+ Binds the model.
+ The bound value.Implements
+ The controller context.
+ The binding context.
+ One or both parameters are null.
+
+
+ Represents an attribute that is used to restrict an action method so that the method handles only HTTP PUT requests.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the action method put request is valid for the specified controller context.
+ true if the action method request is valid for the specified controller context; otherwise, false.
+ The controller context.
+ Information about the action method.
+
+
+ Extends the class that contains the HTTP values that were sent by a client during a Web request.
+
+
+ Retrieves the HTTP data-transfer method override that was used by the client.
+ The HTTP data-transfer method override that was used by the client.
+ An object that contains the HTTP values that were sent by a client during a Web request.
+ The parameter is null.
+ The HTTP data-transfer method override was not implemented.
+
+
+ Provides a way to return an action result with a specific HTTP response status code and description.
+
+
+ Initializes a new instance of the class using a status code.
+ The status code.
+
+
+ Initializes a new instance of the class using a status code and status description.
+ The status code.
+ The status description.
+
+
+ Initializes a new instance of the class using a status code.
+ The status code.
+
+
+ Initializes a new instance of the class using a status code and status description.
+ The status code.
+ The status description.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.
+
+
+ Gets the HTTP status code.
+ The HTTP status code.
+
+
+ Gets the HTTP status description.
+ the HTTP status description.
+
+
+ Represents the result of an unauthorized HTTP request.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the status description.
+ The status description.
+
+
+ Enumerates the HTTP verbs.
+
+
+ Requests that a specified URI be deleted.
+
+
+ Retrieves the information or entity that is identified by the URI of the request.
+
+
+ Retrieves the message headers for the information or entity that is identified by the URI of the request.
+
+
+ Represents a request for information about the communication options available on the request/response chain identified by the Request-URI.
+
+
+ Requests that a set of changes described in the request entity be applied to the resource identified by the Request- URI.
+
+
+ Posts a new entity as an addition to a URI.
+
+
+ Replaces an entity that is identified by a URI.
+
+
+ Defines the methods that are used in an action filter.
+
+
+ Called after the action method executes.
+ The filter context.
+
+
+ Called before an action method executes.
+ The filter context.
+
+
+ Defines the contract for an action invoker, which is used to invoke an action in response to an HTTP request.
+
+
+ Invokes the specified action by using the specified controller context.
+ true if the action was found; otherwise, false.
+ The controller context.
+ The name of the action.
+
+
+ Defines the methods that are required for an authorization filter.
+
+
+ Called when authorization is required.
+ The filter context.
+
+
+ Provides a way for the ASP.NET MVC validation framework to discover at run time whether a validator has support for client validation.
+
+
+ When implemented in a class, returns client validation rules for that class.
+ The client validation rules for this validator.
+ The model metadata.
+ The controller context.
+
+
+ Defines the methods that are required for a controller.
+
+
+ Executes the specified request context.
+ The request context.
+
+
+ Provides fine-grained control over how controllers are instantiated using dependency injection.
+
+
+ When implemented in a class, creates a controller.
+ The created controller.
+ The request context.
+ The controller type.
+
+
+ Defines the methods that are required for a controller factory.
+
+
+ Creates the specified controller by using the specified request context.
+ The controller.
+ The request context.
+ The name of the controller.
+
+
+ Gets the controller's session behavior.
+ The controller's session behavior.
+ The request context.
+ The name of the controller whose session behavior you want to get.
+
+
+ Releases the specified controller.
+ The controller.
+
+
+ Defines the methods that simplify service location and dependency resolution.
+
+
+ Resolves singly registered services that support arbitrary object creation.
+ The requested service or object.
+ The type of the requested service or object.
+
+
+ Resolves multiply registered services.
+ The requested services.
+ The type of the requested services.
+
+
+ Represents a special that has the ability to be enumerable.
+
+
+ Gets the keys from the prefix.
+ The keys.
+ The prefix.
+
+
+ Defines the methods that are required for an exception filter.
+
+
+ Called when an exception occurs.
+ The filter context.
+
+
+ Provides an interface for finding filters.
+
+
+ Returns an enumerator that contains all the instances in the service locator.
+ The enumerator that contains all the instances in the service locator.
+ The controller context.
+ The action descriptor.
+
+
+ Provides an interface for exposing attributes to the class.
+
+
+ When implemented in a class, provides metadata to the model metadata creation process.
+ The model metadata.
+
+
+ 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.
+ The bound value.
+ The controller context.
+ The binding context.
+
+
+ Defines methods that enable dynamic implementations of model binding for classes that implement the interface.
+
+
+ Returns the model binder for the specified type.
+ The model binder for the specified type.
+ The type of the model.
+
+
+ Defines members that specify the order of filters and whether multiple filters are allowed.
+
+
+ When implemented in a class, gets or sets a value that indicates whether multiple filters are allowed.
+ true if multiple filters are allowed; otherwise, false.
+
+
+ When implemented in a class, gets the filter order.
+ The filter order.
+
+
+ Enumerates the types of input controls.
+
+
+ A check box.
+
+
+ A hidden field.
+
+
+ A password box.
+
+
+ A radio button.
+
+
+ A text box.
+
+
+ Defines the methods that are required for a result filter.
+
+
+ Called after an action result executes.
+ The filter context.
+
+
+ Called before an action result executes.
+ The filter context.
+
+
+ Associates a route with an area in an ASP.NET MVC application.
+
+
+ Gets the name of the area to associate the route with.
+ The name of the area to associate the route with.
+
+
+ Defines the contract for temporary-data providers that store data that is viewed on the next request.
+
+
+ Loads the temporary data.
+ The temporary data.
+ The controller context.
+
+
+ Saves the temporary data.
+ The controller context.
+ The values.
+
+
+ Represents an interface that can skip request validation.
+
+
+ Retrieves the value of the object that is associated with the specified key.
+ The value of the object for the specified key.
+ The key.
+ true if validation should be skipped; otherwise, false.
+
+
+ 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.
+ The key of the value object to retrieve.
+
+
+ Defines the methods that are required for a view.
+
+
+ Renders the specified view context by using the specified the writer object.
+ The view context.
+ The writer object.
+
+
+ Defines the methods that are required for a view data dictionary.
+
+
+ Gets or sets the view data dictionary.
+ The view data dictionary.
+
+
+ Defines the methods that are required for a view engine.
+
+
+ Finds the specified partial view by using the specified controller context.
+ The partial view.
+ The controller context.
+ The name of the partial view.
+ true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.
+
+
+ Finds the specified view by using the specified controller context.
+ The page view.
+ The controller context.
+ The name of the view.
+ The name of the master.
+ true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.
+
+
+ Releases the specified view by using the specified controller context.
+ The controller context.
+ The view.
+
+
+ Defines the methods that are required in order to cache view locations in memory.
+
+
+ Gets the view location by using the specified HTTP context and the cache key.
+ The view location.
+ The HTTP context.
+ The cache key.
+
+
+ Inserts the specified view location into the cache by using the specified HTTP context and the cache key.
+ The HTTP context.
+ The cache key.
+ The virtual path.
+
+
+ Provides fine-grained control over how view pages are created using dependency injection.
+
+
+ Provides fine-grained control over how view pages are created using dependency injection.
+ The created view page.
+ The controller context.
+ The type of the controller.
+
+
+ Sends JavaScript content to the response.
+
+
+ Initializes a new instance of the class.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context within which the result is executed.
+ The parameter is null.
+
+
+ Gets or sets the script.
+ The script.
+
+
+ Specifies whether HTTP GET requests from the client are allowed.
+
+
+ HTTP GET requests from the client are allowed.
+
+
+ HTTP GET requests from the client are not allowed.
+
+
+ Represents a class that is used to send JSON-formatted content to the response.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the content encoding.
+ The content encoding.
+
+
+ Gets or sets the type of the content.
+ The type of the content.
+
+
+ Gets or sets the data.
+ The data.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context within which the result is executed.
+ The parameter is null.
+
+
+ Gets or sets a value that indicates whether HTTP GET requests from the client are allowed.
+ A value that indicates whether HTTP GET requests from the client are allowed.
+
+
+ Gets or sets the maximum length of data.
+ The maximum length of data.
+
+
+ Gets or sets the recursion limit.
+ The recursion limit.
+
+
+ Enables action methods to send and receive JSON-formatted text and to model-bind the JSON text to parameters of action methods.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns a JSON value-provider object for the specified controller context.
+ A JSON value-provider object for the specified controller context.
+ The controller context.
+
+
+ Maps a browser request to a LINQ object.
+
+
+ Initializes a new instance of the class.
+
+
+ Binds the model by using the specified controller context and binding context.
+ The bound data object. If the model cannot be bound, this method returns null.Implements.
+ The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.
+ The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.
+
+
+ Provides an adapter for the MaxLengthAttribute attribute.
+
+
+ Initializes a new instance of the MaxLengthAttribute class.
+ The model metadata.
+ The controller context.
+ The MaxLength attribute.
+
+
+ Gets a list of client validation rules for a max length check.
+ A list of client validation rules for the check.
+
+
+ Provides an adapter for the MinLengthAttribute attribute.
+
+
+ Initializes a new instance of the MinLenghtAttribute class.
+ The model metadata.
+ The controller context.
+ The minimum length attribute.
+
+
+ Gets a list of client validation rules for the minimum length check.
+ A list of client validation rules for a check.
+
+
+ Represents an attribute that is used to associate a model type to a model-builder type.
+
+
+ Initializes a new instance of the class.
+ The type of the binder.
+ The parameter is null.
+
+
+ Gets or sets the type of the binder.
+ The type of the binder.
+
+
+ Retrieves an instance of the model binder.
+ A reference to an object that implements the interface.
+ An error occurred while an instance of the model binder was being created.
+
+
+ Represents a class that contains all model binders for the application, listed by binder type.
+
+
+ Initializes a new instance of the class.
+
+
+ Adds the specified item to the model binder dictionary.
+ The object to add to the instance.
+ The object is read-only.
+
+
+ Adds the specified item to the model binder dictionary using the specified key.
+ The key of the element to add.
+ The value of the element to add.
+ The object is read-only.
+
+ is null.
+ An element that has the same key already exists in the object.
+
+
+ Removes all items from the model binder dictionary.
+ The object is read-only.
+
+
+ Determines whether the model binder dictionary contains a specified value.
+ true if is found in the model binder dictionary; otherwise, false.
+ The object to locate in the object.
+
+
+ Determines whether the model binder dictionary contains an element that has the specified key.
+ true if the model binder dictionary contains an element that has the specified key; otherwise, false.
+ The key to locate in the object.
+
+ is null.
+
+
+ Copies the elements of the model binder dictionary to an array, starting at a specified index.
+ The one-dimensional array that is the destination of the elements copied from . The array must have zero-based indexing.
+ The zero-based index in at which copying starts.
+
+ is null.
+
+ is less than 0.
+
+ is multidimensional.-or- is equal to or greater than the length of .-or- The number of elements in the source object is greater than the available space from to the end of the destination array. -or- Type cannot be cast automatically to the type of the destination array.
+
+
+ Gets the number of elements in the model binder dictionary.
+ The number of elements in the model binder dictionary.
+
+
+ Gets or sets the default model binder.
+ The default model binder.
+
+
+ Retrieves the model binder for the specified type.
+ The model binder.
+ The type of the model to retrieve.
+ The parameter is null.
+
+
+ Retrieves the model binder for the specified type or retrieves the default model binder.
+ The model binder.
+ The type of the model to retrieve.
+ true to retrieve the default model binder.
+ The parameter is null.
+
+
+ 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 model binder dictionary is read-only.
+ true if the model binder dictionary is read-only; otherwise, false.
+
+
+ Gets or sets the specified key in an object that implements the interface.
+ The key for the specified item.
+
+
+ Gets a collection that contains the keys in the model binder dictionary.
+ A collection that contains the keys in the model binder dictionary.
+
+
+ Removes the first occurrence of the specified element from the model binder dictionary.
+ true if was successfully removed from the model binder dictionary; otherwise, false. This method also returns false if is not found in the model binder dictionary.
+ The object to remove from the object.
+ The object is read-only.
+
+
+ Removes the element that has the specified key from the model binder dictionary.
+ true if the element is successfully removed; otherwise, false. This method also returns false if was not found in the model binder dictionary.
+ The key of the element to remove.
+ The object is read-only.
+
+ is null.
+
+
+ Returns an enumerator that can be used to iterate through a collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Gets the value that is associated with the specified key.
+ true if the object that implements contains an element that has the specified key; otherwise, false.
+ The key of the value to get.
+ When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+
+ Gets a collection that contains the values in the model binder dictionary.
+ A collection that contains the values in the model binder dictionary.
+
+
+ No content here will be updated; please do not add material here.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using a list of model binder providers.
+ A list of model binder providers.
+
+
+ Removes all elements from the collection.
+
+
+ Returns a model binder of the specified type.
+ A model binder of the specified type.
+ The type of the model binder.
+
+
+ Inserts a model binder provider into the ModelBinderProviderCollection at the specified index.
+ The index.
+ The model binder provider.
+
+
+ Removes the element at the specified index of the collection.
+ The zero-based index of the element to remove.
+
+
+ Replaces the model binder provider element at the specified index.
+ The index.
+ The model binder provider.
+
+
+ Provides a container for model binder providers.
+
+
+ Provides a registration point for model binder providers for applications that do not use dependency injection.
+ The model binder provider collection.
+
+
+ Provides global access to the model binders for the application.
+
+
+ Gets the model binders for the application.
+ The model binders for the application.
+
+
+ Provides the context in which a model binder functions.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the binding context.
+ 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 or sets the property filter.
+ The property filter.
+
+
+ Gets the property metadata.
+ The property metadata.
+
+
+ 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.
+ The parameter is null.
+
+
+ Initializes a new instance of the class by using the specified exception and error message.
+ The exception.
+ The error message.
+ The parameter is null.
+
+
+ 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.
+
+
+ A collection of instances.
+
+
+ Initializes a new instance of the class.
+
+
+ Adds the specified object to the model-error collection.
+ The exception.
+
+
+ Adds the specified error message to the model-error collection.
+ The error message.
+
+
+ Provides a container for common metadata, for the class, and for the class for a data model.
+
+
+ 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 model.
+
+
+ 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 meta information about the data type.
+ Meta information about the data type.
+
+
+ The default order value, which is 10000.
+
+
+ Gets or sets the description of the model.
+ The description of the model. The default value is null.
+
+
+ Gets or sets the display format string for the model.
+ The display format string for the model.
+
+
+ Gets or sets the display name of the model.
+ The display name of the model.
+
+
+ Gets or sets the edit format string of the model.
+ The edit format string of the model.
+
+
+ Returns the metadata from the parameter for the model.
+ The metadata.
+ An expression that identifies the model.
+ The view data dictionary.
+ The type of the parameter.
+ The type of the value.
+
+
+ Gets the metadata from the expression parameter for the model.
+ The metadata for the model.
+ An expression that identifies the model.
+ The view data dictionary.
+
+
+ Gets the display name for the model.
+ The display name for the model.
+
+
+ Returns the simple description of the model.
+ The simple description of the model.
+
+
+ Gets a list of validators for the model.
+ A list of validators for the model.
+ The controller context.
+
+
+ Gets or sets a value that indicates whether the model object should be rendered using associated HTML elements.
+ true if the associated HTML elements that contains the model object should be included with the object; otherwise, false.
+
+
+ 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 type by the MVC framework.
+
+
+ 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 or sets a value that indicates whether the model is required.
+ true if the model is required; otherwise, false.
+
+
+ Gets the value of the model.
+ The value of the model. For more information about , see the entry ASP.NET MVC 2 Templates, Part 2: ModelMetadata on Brad Wilson's blog
+
+
+ Gets the type of the model.
+ The type of the model.
+
+
+ Gets or sets the string to display for null values.
+ The string to display for null values.
+
+
+ Gets or sets a value that represents order of the current metadata.
+ The order value of the current metadata.
+
+
+ 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.
+
+
+ Gets or sets a value that indicates whether request validation is enabled.
+ true if request validation is enabled; otherwise, false.
+
+
+ Gets or sets a short display name.
+ The short display name.
+
+
+ Gets or sets a value that indicates whether the property should be displayed in read-only views such as list and detail views.
+ true if the model should be displayed in read-only views; otherwise, false.
+
+
+ Gets or sets a value that indicates whether the model should be displayed in editable views.
+ true if the model should be displayed in editable views; otherwise, false.
+
+
+ Gets or sets the simple display string for the model.
+ The simple display string for the model.
+
+
+ Gets or sets a hint that suggests what template to use for this model.
+ A hint that suggests what template to use for this model.
+
+
+ Gets or sets a value that can be used as a watermark.
+ The watermark.
+
+
+ Provides an abstract base class for a custom metadata provider.
+
+
+ When overridden in a derived class, initializes a new instance of the object that derives from the class.
+
+
+ Gets a object for each property of a model.
+ A object for each property of a model.
+ The container.
+ The type of the container.
+
+
+ Gets metadata for the specified property.
+ A object for the property.
+ The model accessor.
+ The type of the container.
+ The property to get the metadata model for.
+
+
+ Gets metadata for the specified model accessor and model type.
+ A object for the specified model accessor and model type.
+ The model accessor.
+ The type of the model.
+
+
+ Provides a container for the current instance.
+
+
+ Gets or sets the current object.
+ The current object.
+
+
+ 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.
+
+
+ Returns a object that contains any errors that occurred during model binding.
+ The errors.
+
+
+ Returns a object that encapsulates the value that was being bound during model binding.
+ The 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 model-state dictionary.
+ The parameter is null.
+
+
+ Adds the specified item to the model-state dictionary.
+ The object to add to the model-state dictionary.
+ The model-state dictionary is read-only.
+
+
+ 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.
+ The model-state dictionary is read-only.
+
+ is null.
+ An element that has the specified key already occurs in the model-state dictionary.
+
+
+ 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.
+ The model-state dictionary is read-only.
+
+
+ Determines whether the model-state dictionary contains a specific value.
+ true if 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 one-dimensional array that is the destination of the elements copied from the object. The array must have zero-based indexing.
+ The zero-based index in at which copying starts.
+
+ is null.
+
+ is less than 0.
+
+ is multidimensional.-or- is equal to or greater than the length of .-or- The number of elements in the source collection is greater than the available space from to the end of the destination .-or- Type cannot be cast automatically to the type of the destination .
+
+
+ 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.
+ The parameter is null.
+
+
+ Gets or sets the value that is associated with the specified key.
+ The model state item.
+
+
+ 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 was successfully removed the model-state dictionary; otherwise, false. This method also returns false if is not found in the model-state dictionary.
+ The object to remove from the model-state dictionary.
+ The model-state dictionary is read-only.
+
+
+ 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 was not found in the model-state dictionary.
+ The key of the element to remove.
+ The model-state dictionary is read-only.
+
+ is null.
+
+
+ Sets the value for the specified key by using the specified value provider dictionary.
+ The key.
+ The value.
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+ An enumerator 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 that implements contains an element that has the specified key; otherwise, false.
+ The key of the value to get.
+ When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+
+ Gets a collection that contains the values in the dictionary.
+ A collection that contains the values of the model-state dictionary.
+
+
+ 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.
+
+
+ Called from constructors in derived classes to initialize the class.
+ The metadata.
+ The controller context.
+
+
+ Gets the controller context.
+ The controller context.
+
+
+ When implemented in a derived class, returns metadata for client validation.
+ The metadata for client validation.
+
+
+ Returns a composite model validator for the model.
+ A composite model validator for the model.
+ The metadata.
+ The controller context.
+
+
+ Gets or sets a value that indicates whether a model property is required.
+ true if the model property is required; otherwise, false.
+
+
+ Gets the metadata for the model validator.
+ The metadata for the model validator.
+
+
+ When implemented in a derived class, validates the object.
+ A list of validation results.
+ The container.
+
+
+ Provides a list of validators for a model.
+
+
+ When implemented in a derived class, initializes a new instance of the class.
+
+
+ Gets a list of validators.
+ A list of validators.
+ The metadata.
+ The context.
+
+
+ No content here will be updated; please do not add material here.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using a list of model-validation providers.
+ A list of model-validation providers.
+
+
+ Removes all elements from the collection.
+
+
+ Returns the list of model validators.
+ The list of model validators.
+ The model metadata.
+ The controller context.
+
+
+ Inserts a model-validator provider into the collection.
+ The zero-based index at which item should be inserted.
+ The model-validator provider object to insert.
+
+
+ Removes the element at the specified index of the collection.
+ The zero-based index of the element to remove.
+
+
+ Replaces the model-validator provider element at the specified index.
+ The zero-based index of the model-validator provider element to replace.
+ The new value for the model-validator provider element.
+
+
+ Provides a container for the current validation provider.
+
+
+ Gets the model validator provider collection.
+ The model validator provider collection.
+
+
+ Represents a list of items that users can select more than one item from.
+
+
+ Initializes a new instance of the class by using the specified items to include in the list.
+ The items.
+ The parameter is null.
+
+
+ Initializes a new instance of the class by using the specified items to include in the list and the selected values.
+ The items.
+ The selected values.
+ The parameter is null.
+
+
+ Initializes a new instance of the class by using the items to include in the list, the data value field, and the data text field.
+ The items.
+ The data value field.
+ The data text field.
+ The parameter is null.
+
+
+ Initializes a new instance of the class by using the items to include in the list, the data value field, the data text field, and the selected values.
+ The items.
+ The data value field.
+ The data text field.
+ The selected values.
+ The parameter is null.
+
+
+ Gets or sets the data text field.
+ The data text field.
+
+
+ Gets or sets the data value field.
+ The data value field.
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Gets or sets the items in the list.
+ The items in the list.
+
+
+ Gets or sets the selected values.
+ The selected values.
+
+
+ Returns an enumerator can be used to iterate through a collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ When implemented in a derived class, provides a metadata class that contains a reference to the implementation of one or more of the filter interfaces, the filter's order, and the filter's scope.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class and specifies the order of filters and whether multiple filters are allowed.
+ true to specify that multiple filters of the same type are allowed; otherwise, false.
+ The filter order.
+
+
+ Gets a value that indicates whether more than one instance of the filter attribute can be specified.
+ true if more than one instance of the filter attribute is allowed; otherwise, false.Implements.
+
+
+ Gets a value that indicates the order in which a filter is applied.
+ A value that indicates the order in which a filter is applied.Implements.
+
+
+ Selects the controller that will handle an HTTP request.
+
+
+ Initializes a new instance of the class.
+ The request context.
+ The parameter is null.
+
+
+ Adds the version header by using the specified HTTP context.
+ The HTTP context.
+
+
+ Called by ASP.NET to begin asynchronous request processing.
+ The status of the asynchronous call.
+ The HTTP context.
+ The asynchronous callback method.
+ The state of the asynchronous object.
+
+
+ Called by ASP.NET to begin asynchronous request processing using the base HTTP context.
+ The status of the asynchronous call.
+ The HTTP context.
+ The asynchronous callback method.
+ The state of the asynchronous object.
+
+
+ Gets or sets a value that indicates whether the MVC response header is disabled.
+ true if the MVC response header is disabled; otherwise, false.
+
+
+ Called by ASP.NET when asynchronous request processing has ended.
+ The asynchronous result.
+
+
+ Gets a value that indicates whether another request can use the instance.
+ true if the instance is reusable; otherwise, false.
+
+
+ Contains the header name of the ASP.NET MVC version.
+
+
+ Processes the request by using the specified HTTP request context.
+ The HTTP context.
+
+
+ Processes the request by using the specified base HTTP request context.
+ The HTTP context.
+
+
+ Gets the request context.
+ The request context.
+
+
+ Called by ASP.NET to begin asynchronous request processing using the base HTTP context.
+ The status of the asynchronous call.
+ The HTTP context.
+ The asynchronous callback method.
+ The data.
+
+
+ Called by ASP.NET when asynchronous request processing has ended.
+ The asynchronous result.
+
+
+ Gets a value that indicates whether another request can use the instance.
+ true if the instance is reusable; otherwise, false.
+
+
+ Enables processing of HTTP Web requests by a custom HTTP handler that implements the interface.
+ An object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) that are used to service HTTP requests.
+
+
+ Represents an HTML-encoded string that should not be encoded again.
+
+
+ Initializes a new instance of the class.
+ The string to create. If no value is assigned, the object is created using an empty-string value.
+
+
+ Creates an HTML-encoded string using the specified text value.
+ An HTML-encoded string.
+ The value of the string to create .
+
+
+ Contains an empty HTML string.
+
+
+ Determines whether the specified string contains content or is either null or empty.
+ true if the string is null or empty; otherwise, false.
+ The string.
+
+
+ Verifies and processes an HTTP request.
+
+
+ Initializes a new instance of the class.
+
+
+ Called by ASP.NET to begin asynchronous request processing.
+ The status of the asynchronous call.
+ The HTTP context.
+ The asynchronous callback method.
+ The state.
+
+
+ Called by ASP.NET to begin asynchronous request processing.
+ The status of the asynchronous call.
+ The base HTTP context.
+ The asynchronous callback method.
+ The state.
+
+
+ Called by ASP.NET when asynchronous request processing has ended.
+ The asynchronous result.
+
+
+ Called by ASP.NET to begin asynchronous request processing.
+ The status of the asynchronous call.
+ The context.
+ The asynchronous callback method.
+ An object that contains data.
+
+
+ Called by ASP.NET when asynchronous request processing has ended.
+ The status of the asynchronous operations.
+
+
+ Verifies and processes an HTTP request.
+ The HTTP handler.
+ The HTTP context.
+
+
+ Creates an object that implements the IHttpHandler interface and passes the request context to it.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified factory controller object.
+ The controller factory.
+
+
+ Returns the HTTP handler by using the specified HTTP context.
+ The HTTP handler.
+ The request context.
+
+
+ Returns the session behavior.
+ The session behavior.
+ The request context.
+
+
+ Returns the HTTP handler by using the specified request context.
+ The HTTP handler.
+ The request context.
+
+
+ Creates instances of files.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a Razor host.
+ A Razor host.
+ The virtual path to the target file.
+ The physical path to the target file.
+
+
+ Extends a NameValueCollection object so that the collection can be copied to a specified dictionary.
+
+
+ Copies the specified collection to the specified destination.
+ The collection.
+ The destination.
+
+
+ Copies the specified collection to the specified destination, and optionally replaces previous entries.
+ The collection.
+ The destination.
+ true to replace previous entries; otherwise, false.
+
+
+ Represents the base class for value providers whose values come from a object.
+
+
+ Initializes a new instance of the class using the specified unvalidated collection.
+ A collection that contains the values that are used to initialize the provider.
+ A collection that contains the values that are used to initialize the provider. This collection will not be validated.
+ An object that contains information about the target culture.
+
+
+ Initializes a new instance of the class.
+ A collection that contains the values that are used to initialize the provider.
+ An object that contains information about the target culture.
+ The parameter is null.
+
+
+ Determines whether the collection contains the specified prefix.
+ true if the collection contains the specified prefix; otherwise, false.
+ The prefix to search for.
+ The parameter is null.
+
+
+ Gets the keys using the specified prefix.
+ They keys.
+ The prefix.
+
+
+ Returns a value object using the specified key.
+ The value object for the specified key.
+ The key of the value object to retrieve.
+ The parameter is null.
+
+
+ Returns a value object using the specified key and validation directive.
+ The value object for the specified key.
+ The key.
+ true if validation should be skipped; otherwise, false.
+
+
+ Provides a convenience wrapper for the attribute.
+
+
+ Initializes a new instance of the class.
+
+
+ Represents an attribute that is used to indicate that a controller method is not an action method.
+
+
+ Initializes a new instance of the class.
+
+
+ Determines whether the attribute marks a method that is not an action method by using the specified controller context.
+ true if the attribute marks a valid non-action method; otherwise, false.
+ The controller context.
+ The method information.
+
+
+ Represents an attribute that is used to mark an action method whose output will be cached.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the cache profile name.
+ The cache profile name.
+
+
+ Gets or sets the child action cache.
+ The child action cache.
+
+
+ Gets or sets the cache duration, in seconds.
+ The cache duration.
+
+
+ Returns a value that indicates whether a child action cache is active.
+ true if the child action cache is active; otherwise, false.
+ The controller context.
+
+
+ Gets or sets the location.
+ The location.
+
+
+ Gets or sets a value that indicates whether to store the cache.
+ true if the cache should be stored; otherwise, false.
+
+
+ This method is an implementation of and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.
+ The filter context.
+
+
+ This method is an implementation of and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.
+ The filter context.
+
+
+ This method is an implementation of and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.
+ The filter context.
+
+
+ This method is an implementation of and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.
+ The filter context.
+
+
+ Called before the action result executes.
+ The filter context, which encapsulates information for using .
+ The parameter is null.
+
+
+ Gets or sets the SQL dependency.
+ The SQL dependency.
+
+
+ Gets or sets the vary-by-content encoding.
+ The vary-by-content encoding.
+
+
+ Gets or sets the vary-by-custom value.
+ The vary-by-custom value.
+
+
+ Gets or sets the vary-by-header value.
+ The vary-by-header value.
+
+
+ Gets or sets the vary-by-param value.
+ The vary-by-param value.
+
+
+ Represents the attributes associated with the override filter.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the filters to override for this instance.
+ The filters to override for this instance.
+
+
+ Represents the attributes associated with the authentication.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the filters to override for this instance.
+ The filters to override for this instance.
+
+
+ Represents the attributes associated with the authorization.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the filters to override for this instance.
+ The filters to override for this instance.
+
+
+ Represents the attributes associated with the exception filter.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the filters to override for this instance.
+ The filters to override for this instance.
+
+
+ Represents the attributes associated with the result filter.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the filters to override for this instance.
+ The filters to override for this instance.
+
+
+ Encapsulates information for binding action-method parameters to a data model.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the model binder.
+ The model binder.
+
+
+ Gets a comma-delimited list of property names for which binding is disabled.
+ The exclude list.
+
+
+ Gets a comma-delimited list of property names for which binding is enabled.
+ The include list.
+
+
+ Gets the prefix to use when the MVC framework binds a value to an action parameter or to a model property.
+ The prefix.
+
+
+ Contains information that describes a parameter.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the action descriptor.
+ The action descriptor.
+
+
+ Gets the binding information.
+ The binding information.
+
+
+ Gets the default value of the parameter.
+ The default value of the parameter.
+
+
+ Returns an array of custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Returns an array of custom attributes that are defined for this member, identified by type.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+ The parameter is null.
+
+
+ Indicates whether one or more instances of a custom attribute type are defined for this member.
+ true if the custom attribute type is defined for this member; otherwise, false.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The parameter is null.
+
+
+ Gets the name of the parameter.
+ The name of the parameter.
+
+
+ Gets the type of the parameter.
+ The type of the parameter.
+
+
+ Represents a base class that is used to send a partial view to the response.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns the object that is used to render the view.
+ The view engine result.
+ The controller context.
+ An error occurred while the method was attempting to find the view.
+
+
+ Provides a registration point for ASP.NET Razor pre-application start code.
+
+
+ Registers Razor pre-application start code.
+
+
+ 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.
+
+
+ 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.
+
+
+ Returns 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.
+ The parameter is null.
+
+
+ Provides an adapter for the attribute.
+
+
+ Initializes a new instance of the class.
+ The model metadata.
+ The controller context.
+ The range attribute.
+
+
+ Gets a list of client validation rules for a range check.
+ A list of client validation rules for a range check.
+
+
+ Represents the class used to create views that have Razor syntax.
+
+
+ Initializes a new instance of the class.
+ The controller context.
+ The view path.
+ The layout or master page.
+ A value that indicates whether view start files should be executed before the view.
+ The set of extensions that will be used when looking up view start files.
+
+
+ Initializes a new instance of the class using the view page activator.
+ The controller context.
+ The view path.
+ The layout or master page.
+ A value that indicates whether view start files should be executed before the view.
+ The set of extensions that will be used when looking up view start files.
+ The view page activator.
+
+
+ Gets the layout or master page.
+ The layout or master page.
+
+
+ Renders the specified view context by using the specified writer and instance.
+ The view context.
+ The writer that is used to render the view to the response.
+ The instance.
+
+
+ Gets a value that indicates whether view start files should be executed before the view.
+ A value that indicates whether view start files should be executed before the view.
+
+
+ Gets or sets the set of file extensions that will be used when looking up view start files.
+ The set of file extensions that will be used when looking up view start files.
+
+
+ Represents a view engine that is used to render a Web page that uses the ASP.NET Razor syntax.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the view page activator.
+ The view page activator.
+
+
+ Creates a partial view using the specified controller context and partial path.
+ The partial view.
+ The controller context.
+ The path to the partial view.
+
+
+ Creates a view by using the specified controller context and the paths of the view and master view.
+ The view.
+ The controller context.
+ The path to the view.
+ The path to the master view.
+
+
+ Controls the processing of application actions by redirecting to a specified URI.
+
+
+ Initializes a new instance of the class.
+ The target URL.
+ The parameter is null.
+
+
+ Initializes a new instance of the class using the specified URL and permanent-redirection flag.
+ The URL.
+ A value that indicates whether the redirection should be permanent.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context within which the result is executed.
+ The parameter is null.
+
+
+ Gets a value that indicates whether the redirection should be permanent.
+ true if the redirection should be permanent; otherwise, false.
+
+
+ Gets or sets the target URL.
+ The target URL.
+
+
+ Represents a result that performs a redirection by using the specified route values dictionary.
+
+
+ Initializes a new instance of the class by using the specified route name and route values.
+ The name of the route.
+ The route values.
+
+
+ Initializes a new instance of the class by using the specified route name, route values, and permanent-redirection flag.
+ The name of the route.
+ The route values.
+ A value that indicates whether the redirection should be permanent.
+
+
+ Initializes a new instance of the class by using the specified route values.
+ The route values.
+
+
+ Enables processing of the result of an action method by a custom type that inherits from the class.
+ The context within which the result is executed.
+ The parameter is null.
+
+
+ Gets a value that indicates whether the redirection should be permanent.
+ true if the redirection should be permanent; otherwise, false.
+
+
+ Gets or sets the name of the route.
+ The name of the route.
+
+
+ Gets or sets the route values.
+ The route values.
+
+
+ Contains information that describes a reflected action method.
+
+
+ Initializes a new instance of the class.
+ The action-method information.
+ The name of the action.
+ The controller descriptor.
+ Either the or parameter is null.
+ The parameter is null or empty.
+
+
+ Gets the name of the action.
+ The name of the action.
+
+
+ Gets the controller descriptor.
+ The controller descriptor.
+
+
+ Executes the specified controller context by using the specified action-method parameters.
+ The action return value.
+ The controller context.
+ The parameters.
+ The or parameter is null.
+
+
+ Returns an array of custom attributes defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ 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.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Gets the filter attributes.
+ The filter attributes.
+ true to use the cache, otherwise false.
+
+
+ Retrieves the parameters of the action method.
+ The parameters of the action method.
+
+
+ Retrieves the action selectors.
+ The action selectors.
+
+
+ Indicates whether one or more instances of a custom attribute type are defined for this member.
+ true if the custom attribute type is defined for this member; otherwise, false.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Gets or sets the action-method information.
+ The action-method information.
+
+
+ Gets the unique ID for the reflected action descriptor using lazy initialization.
+ The unique ID.
+
+
+ Contains information that describes a reflected controller.
+
+
+ Initializes a new instance of the class.
+ The type of the controller.
+ The parameter is null.
+
+
+ Gets the type of the controller.
+ The type of the controller.
+
+
+ Finds the specified action for the specified controller context.
+ The information about the action.
+ The controller context.
+ The name of the action.
+ The parameter is null.
+ The parameter is null or empty.
+
+
+ Returns the list of actions for the controller.
+ A list of action descriptors for the controller.
+
+
+ Returns an array of custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Returns an array of custom attributes that are defined for this member, identified by type.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Gets the filter attributes.
+ The filter attributes.
+ true to use the cache, otherwise false.
+
+
+ Returns a value that indicates whether one or more instances of a custom attribute type are defined for this member.
+ true if the custom attribute type is defined for this member; otherwise, false.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Contains information that describes a reflected action-method parameter.
+
+
+ Initializes a new instance of the class.
+ The parameter information.
+ The action descriptor.
+ The or parameter is null.
+
+
+ Gets the action descriptor.
+ The action descriptor.
+
+
+ Gets the binding information.
+ The binding information.
+
+
+ Gets the default value of the reflected parameter.
+ The default value of the reflected parameter.
+
+
+ Returns an array of custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Returns an array of custom attributes that are defined for this member, identified by type.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+ The custom attribute type cannot be loaded.
+ There is more than one attribute of type defined for this member.
+
+
+ Returns a value that indicates whether one or more instances of a custom attribute type are defined for this member.
+ true if the custom attribute type is defined for this member; otherwise, false.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; 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.
+
+
+ Provides an adapter for the attribute.
+
+
+ Initializes a new instance of the class.
+ The model metadata.
+ The controller context.
+ The regular expression attribute.
+
+
+ Gets a list of regular-expression client validation rules.
+ A list of regular-expression client validation rules.
+
+
+ Provides an attribute that uses the jQuery validation plug-in remote validator.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified route name.
+ The route name.
+
+
+ Initializes a new instance of the class using the specified action-method name and controller name.
+ The name of the action method.
+ The name of the controller.
+
+
+ Initializes a new instance of the class using the specified action-method name, controller name, and area name.
+ The name of the action method.
+ The name of the controller.
+ The name of the area.
+
+
+ Gets or sets the additional fields that are required for validation.
+ The additional fields that are required for validation.
+
+
+ Returns a comma-delimited string of validation field names.
+ A comma-delimited string of validation field names.
+ The name of the validation property.
+
+
+ Formats the error message that is displayed when validation fails.
+ A formatted error message.
+ A name to display with the error message.
+
+
+ Formats the property for client validation by prepending an asterisk (*) and a dot.
+ The string "*." Is prepended to the property.
+ The property.
+
+
+ Gets a list of client validation rules for the property.
+ A list of remote client validation rules for the property.
+ The model metadata.
+ The controller context.
+
+
+ Gets the URL for the remote validation call.
+ The URL for the remote validation call.
+ The controller context.
+
+
+ Gets or sets the HTTP method used for remote validation.
+ The HTTP method used for remote validation. The default value is "Get".
+
+
+ This method always returns true.
+ true
+ The validation target.
+
+
+ Gets the route data dictionary.
+ The route data dictionary.
+
+
+ Gets or sets the route name.
+ The route name.
+
+
+ Gets the route collection from the route table.
+ The route collection from the route table.
+
+
+ Provides an adapter for the attribute.
+
+
+ Initializes a new instance of the class.
+ The model metadata.
+ The controller context.
+ The required attribute.
+
+
+ Gets a list of required-value client validation rules.
+ A list of required-value client validation rules.
+
+
+ Represents an attribute that forces an unsecured HTTP request to be re-sent over HTTPS.
+
+
+ Initializes a new instance of the class.
+
+
+ Handles unsecured HTTP requests that are sent to the action method.
+ An object that encapsulates information that is required in order to use the attribute.
+ The HTTP request contains an invalid transfer method override. All GET requests are considered invalid.
+
+
+ Determines whether a request is secured (HTTPS) and, if it is not, calls the method.
+ An object that encapsulates information that is required in order to use the attribute.
+ The parameter is null.
+
+
+ Provides the context for the method of the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The controller context.
+ The result object.
+ true to cancel execution; otherwise, false.
+ The exception object.
+ The parameter is null.
+
+
+ Gets or sets a value that indicates whether this instance is canceled.
+ true if the instance is canceled; otherwise, false.
+
+
+ Gets or sets the exception object.
+ The exception object.
+
+
+ Gets or sets a value that indicates whether the exception has been handled.
+ true if the exception has been handled; otherwise, false.
+
+
+ Gets or sets the action result.
+ The action result.
+
+
+ Provides the context for the method of the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified controller context and action result.
+ The controller context.
+ The action result.
+ The parameter is null.
+
+
+ Gets or sets a value that indicates whether this value is "cancel".
+ true if the value is "cancel"; otherwise, false.
+
+
+ Gets or sets the action result.
+ The action result.
+
+
+ Defines the area to set for all the routes defined in this controller.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The name of the area. If the value is null, an attempt will be made to infer the area name from the target controller's namespace.
+
+
+ Gets the area name to set for all the routes defined in the controller. If the value is null, an attempt will be made to infer the area name from the target controller's namespace.
+ The area name to set for all the routes defined in the controller.
+
+
+ Gets the URL prefix to apply to the routes of this area. Defaults to the area's name.
+ The URL prefix to apply to the routes of this area.
+
+
+ Place on a controller or action to expose it directly via a route. When placed on a controller, it applies to actions that do not have any System.Web.Mvc.RouteAttribute’s on them.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class with the specified template.
+ The pattern of the route to match.
+
+
+ Gets or sets the name of the route.
+ The name of the route
+
+
+ Gets the order the route is applied.
+ The order the route is applied.
+
+
+ Creates a direct route entry.
+ The direct route entry.
+ The context to use to create the route.
+
+
+ Gets the pattern for the route to match.
+ The pattern to match.
+
+
+ Provides routing extensions for route collection attribute.
+
+
+ Maps the attribute-defined routes for the application.
+ A collection of routes.
+
+
+ Maps the attribute-defined routes for the application.
+ A collection of routes.
+ The to use for resolving inline constraints in route templates.
+
+
+ Extends a object for MVC routing.
+
+
+ Returns an object that contains information about the route and virtual path that are the result of generating a URL in the current area.
+ An object that contains information about the route and virtual path that are the result of generating a URL in the current area.
+ An object that contains the routes for the applications.
+ An object that encapsulates information about the requested route.
+ The name of the route to use when information about the URL path is retrieved.
+ An object that contains the parameters for a route.
+
+
+ Returns an object that contains information about the route and virtual path that are the result of generating a URL in the current area.
+ An object that contains information about the route and virtual path that are the result of generating a URL in the current area.
+ An object that contains the routes for the applications.
+ An object that encapsulates information about the requested route.
+ An object that contains the parameters for a route.
+
+
+ Ignores the specified URL route for the given list of available routes.
+ A collection of routes for the application.
+ The URL pattern for the route to ignore.
+ The or parameter is null.
+
+
+ Ignores the specified URL route for the given list of the available routes and a list of constraints.
+ A collection of routes for the application.
+ The URL pattern for the route to ignore.
+ A set of expressions that specify values for the parameter.
+ The or parameter is null.
+
+
+ Maps the specified URL route.
+ A reference to the mapped route.
+ A collection of routes for the application.
+ The name of the route to map.
+ The URL pattern for the route.
+ The or parameter is null.
+
+
+ Maps the specified URL route 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 URL pattern for the route.
+ An object that contains default route values.
+ The or parameter is null.
+
+
+ Maps the specified URL route 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 URL pattern for the route.
+ An object that contains default route values.
+ A set of expressions that specify values for the parameter.
+ The or parameter is null.
+
+
+ Maps the specified URL route and sets default route values, constraints, and namespaces.
+ A reference to the mapped route.
+ A collection of routes for the application.
+ The name of the route to map.
+ The URL pattern for the route.
+ An object that contains default route values.
+ A set of expressions that specify values for the parameter.
+ A set of namespaces for the application.
+ The or parameter is null.
+
+
+ Maps the specified URL route and sets default route values and namespaces.
+ A reference to the mapped route.
+ A collection of routes for the application.
+ The name of the route to map.
+ The URL pattern for the route.
+ An object that contains default route values.
+ A set of namespaces for the application.
+ The or parameter is null.
+
+
+ Maps the specified URL route and sets the namespaces.
+ A reference to the mapped route.
+ A collection of routes for the application.
+ The name of the route to map.
+ The URL pattern for the route.
+ A set of namespaces for the application.
+ The or parameter is null.
+
+
+ Represents a value provider for route data that is contained in an object that implements the interface.
+
+
+ Initializes a new instance of the class.
+ An object that contain information about the HTTP request.
+
+
+ Represents a factory for creating route-data value provider objects.
+
+
+ Initialized 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.
+ The parameter is null.
+
+
+ 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 with the specified prefix.
+ The route prefix for the controller.
+
+
+ Gets the route prefix.
+ The route prefix.
+
+
+ Represents a list that lets users select one item.
+
+
+ Initializes a new instance of the class by using the specified items for the list.
+ The items.
+
+
+ Initializes a new instance of the class by using the specified items for the list and a selected value.
+ The items.
+ The selected value.
+
+
+ Initializes a new instance of the class by using the specified items for the list, the data value field, and the data text field.
+ The items.
+ The data value field.
+ The data text field.
+
+
+ Initializes a new instance of the class by using the specified items for the list, the data value field, the data text field, and a selected value.
+ The items.
+ The data value field.
+ The data text field.
+ The selected value.
+
+
+ Gets the list value that was selected by the user.
+ The selected value.
+
+
+ Represents the selected item in an instance of the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets a value that indicates whether this is selected.
+ true if the item is selected; otherwise, false.
+
+
+ Gets or sets the text of the selected item.
+ The text.
+
+
+ Gets or sets the value of the selected item.
+ The value.
+
+
+ Specifies the session state of the controller.
+
+
+ Initializes a new instance of the class
+ The type of the session state.
+
+
+ Get the session state behavior for the controller.
+ The session state behavior for the controller.
+
+
+ Provides session-state data to the current object.
+
+
+ Initializes a new instance of the class.
+
+
+ Loads the temporary data by using the specified controller context.
+ The temporary data.
+ The controller context.
+ An error occurred when the session context was being retrieved.
+
+
+ Saves the specified values in the temporary data dictionary by using the specified controller context.
+ The controller context.
+ The values.
+ An error occurred the session context was being retrieved.
+
+
+ Provides an adapter for the attribute.
+
+
+ Initializes a new instance of the class.
+ The model metadata.
+ The controller context.
+ The string-length attribute.
+
+
+ Gets a list of string-length client validation rules.
+ A list of string-length client validation rules.
+
+
+ Represents a set of data that persists only from one request to the next.
+
+
+ Initializes a new instance of the class.
+
+
+ Adds an element that has the specified key and value to the object.
+ The key of the element to add.
+ The value of the element to add.
+ The object is read-only.
+
+ is null.
+ An element that has the same key already exists in the object.
+
+
+ Removes all items from the instance.
+ The object is read-only.
+
+
+ Determines whether the instance contains an element that has the specified key.
+ true if the instance contains an element that has the specified key; otherwise, false.
+ The key to locate in the instance.
+
+ is null.
+
+
+ Determines whether the dictionary contains the specified value.
+ true if the dictionary contains the specified value; otherwise, false.
+ The value.
+
+
+ Gets the number of elements in the object.
+ The number of elements in the object.
+
+
+ Gets the enumerator.
+ The enumerator.
+
+
+ Gets or sets the object that has the specified key.
+ The object that has the specified key.
+
+
+ Marks all keys in the dictionary for retention.
+
+
+ Marks the specified key in the dictionary for retention.
+ The key to retain in the dictionary.
+
+
+ Gets an object that contains the keys of elements in the object.
+ The keys of the elements in the object.
+
+
+ Loads the specified controller context by using the specified data provider.
+ The controller context.
+ The temporary data provider.
+
+
+ Returns an object that contains the element that is associated with the specified key, without marking the key for deletion.
+ An object that contains the element that is associated with the specified key.
+ The key of the element to return.
+
+
+ Removes the element that has the specified key from the object.
+ true if the element was removed successfully; otherwise, false. This method also returns false if was not found in the . instance.
+ The key of the element to remove.
+ The object is read-only.
+
+ is null.
+
+
+ Saves the specified controller context by using the specified data provider.
+ The controller context.
+ The temporary data provider.
+
+
+ Adds the specified key/value pair to the dictionary.
+ The key/value pair.
+
+
+ Determines whether a sequence contains a specified element by using the default equality comparer.
+ true if the dictionary contains the specified key/value pair; otherwise, false.
+ The key/value pair to search for.
+
+
+ Copies a key/value pair to the specified array at the specified index.
+ The target array.
+ The index.
+
+
+ Gets a value that indicates whether the dictionary is read-only.
+ true if the dictionary is read-only; otherwise, false.
+
+
+ Deletes the specified key/value pair from the dictionary.
+ true if the key/value pair was removed successfully; otherwise, false.
+ The key/value pair.
+
+
+ Returns an enumerator that can be used to iterate through a collection.
+ An object that can be used to iterate through the collection.
+
+
+ Gets the value of the element that has the specified key.
+ true if the object that implements contains an element that has the specified key; otherwise, false.
+ The key of the value to get.
+ When this method returns, the value that is associated with the specified key, if the key is found; otherwise, the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+
+ Gets the object that contains the values in the object.
+ The values of the elements in the object that implements .
+
+
+ Encapsulates information about the current template context.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the formatted model value.
+ The formatted model value.
+
+
+ Retrieves the full DOM ID of a field using the specified HTML name attribute.
+ The full DOM ID.
+ The value of the HTML name attribute.
+
+
+ Retrieves the fully qualified name (including a prefix) for a field using the specified HTML name attribute.
+ The prefixed name of the field.
+ The value of the HTML name attribute.
+
+
+ Gets or sets the HTML field prefix.
+ The HTML field prefix.
+
+
+ Contains the number of objects that were visited by the user.
+ The number of objects.
+
+
+ Determines whether the template has been visited by the user.
+ true if the template has been visited by the user; otherwise, false.
+ An object that encapsulates information that describes the model.
+
+
+ Contains methods to build URLs for ASP.NET MVC within an application.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified request context.
+ An object that contains information about the current request and about the route that it matched.
+
+
+ Initializes a new instance of the class using the specified request context and route collection.
+ An object that contains information about the current request and about the route that it matched.
+ A collection of routes.
+ The or the parameter is null.
+
+
+ Generates a string to a fully qualified URL to an action method.
+ A string to a fully qualified URL to an action method.
+
+
+ Generates a fully qualified URL to an action method by using the specified action name.
+ The fully qualified URL to an action method.
+ The name of the action method.
+
+
+ Generates a fully qualified URL to an action method by using the specified action name and route values.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+
+
+ Generates a fully qualified URL to an action method by using the specified action name and controller name.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ The name of the controller.
+
+
+ Generates a fully qualified URL to an action method by using the specified action name, controller name, and route values.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+
+
+ Generates a fully qualified URL to an action method by using the specified action name, controller name, route values, and protocol to use.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ The protocol for the URL, such as "http" or "https".
+
+
+ Generates a fully qualified URL to an action method by using the specified action name, controller name, and route values.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+
+
+ Generates a fully qualified URL for an action method by using the specified action name, controller name, route values, and protocol to use.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ The protocol for the URL, such as "http" or "https".
+
+
+ Generates a fully qualified URL for an action method by using the specified action name, controller name, route values, protocol to use and host name.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+
+
+ Generates a fully qualified URL to an action method for the specified action name and route values.
+ The fully qualified URL to an action method.
+ The name of the action method.
+ An object that contains the parameters for a route.
+
+
+ Converts a virtual (relative) path to an application absolute path.
+ The application absolute path.
+ The virtual path of the content.
+
+
+ Encodes special characters in a URL string into character-entity equivalents.
+ An encoded URL string.
+ The text to encode.
+
+
+ Returns a string that contains a content URL.
+ A string that contains a content URL.
+ The content path.
+ The http context.
+
+
+ Returns a string that contains a URL.
+ A string that contains a URL.
+ The route name.
+ The action name.
+ The controller name.
+ The HTTP protocol.
+ The host name.
+ The fragment.
+ The route values.
+ The route collection.
+ The request context.
+ true to include implicit MVC values; otherwise false.
+
+
+ Returns a string that contains a URL.
+ A string that contains a URL.
+ The route name.
+ The action name.
+ The controller name.
+ The route values.
+ The route collection.
+ The request context.
+ true to include implicit MVC values; otherwise false.
+
+
+ Generates a fully qualified URL for the specified route values.
+ A fully qualified URL for the specified route values.
+ The route name.
+ The route values.
+
+
+ Generates a fully qualified URL for the specified route values.
+ A fully qualified URL for the specified route values.
+ The route name.
+ The route values.
+
+
+ Returns a value that indicates whether the URL is local.
+ true if the URL is local; otherwise, false.
+ The URL.
+
+
+ Gets information about an HTTP request that matches a defined route.
+ The request context.
+
+
+ Gets a collection that contains the routes that are registered for the application.
+ The route collection.
+
+
+ Generates a fully qualified URL for the specified route values.
+ The fully qualified URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+
+
+ Generates a fully qualified URL for the specified route name.
+ The fully qualified URL.
+ The name of the route that is used to generate URL.
+
+
+ Generates a fully qualified URL for the specified route values by using a route name.
+ The fully qualified URL.
+ The name of the route that is used to generate URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+
+
+ Generates a fully qualified URL for the specified route values by using a route name and the protocol to use.
+ The fully qualified URL.
+ The name of the route that is used to generate the URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ The protocol for the URL, such as "http" or "https".
+
+
+ Generates a fully qualified URL for the specified route values by using a route name.
+ The fully qualified URL.
+ The name of the route that is used to generate URL.
+ An object that contains the parameters for a route.
+
+
+ Generates a fully qualified URL for the specified route values by using the specified route name, protocol to use, and host name.
+ The fully qualified URL.
+ The name of the route that is used to generate URL.
+ An object that contains the parameters for a route.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+
+
+ Generates a fully qualified URL for the specified route values.
+ The fully qualified URL.
+ An object that contains the parameters for a route.
+
+
+ Represents an optional parameter that is used by the class during routing.
+
+
+ Contains the read-only value for the optional parameter.
+
+
+ Returns an empty string. This method supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.
+ An empty string.
+
+
+ Provides an object adapter that can be validated.
+
+
+ Initializes a new instance of the class.
+ The model metadata.
+ The controller context.
+
+
+ Validates the specified object.
+ A list of validation results.
+ The container.
+
+
+ Represents an attribute that is used to prevent forgery of a request.
+
+
+ Initializes a new instance of the class.
+
+
+ Called when authorization is required.
+ The filter context.
+ The parameter is null.
+
+
+ Gets or sets the salt string.
+ The salt string.
+
+
+ Represents an attribute that is used to mark action methods whose input must be validated.
+
+
+ Initializes a new instance of the class.
+ true to enable validation.
+
+
+ Gets or sets a value that indicates whether to enable validation.
+ true if validation is enabled; otherwise, false.
+
+
+ Called when authorization is required.
+ The filter context.
+ The parameter is null.
+
+
+ Represents the collection of value-provider objects for the application.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class and registers the specified value providers.
+ The list of value providers to register.
+
+
+ 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 using the specified prefix.
+ They keys.
+ The prefix.
+
+
+ Returns a value object using the specified key.
+ The value object for the specified key.
+ The key of the value object to retrieve.
+
+
+ Returns a value object using the specified key and skip-validation parameter.
+ The value object for the specified key.
+ The key of the value object to retrieve.
+ true to specify that validation should be skipped; otherwise, false.
+
+
+ Inserts the specified value-provider object into the collection at the specified index location.
+ The zero-based index location at which to insert the value provider into the collection.
+ The value-provider object to insert.
+ The parameter is null.
+
+
+ Replaces the value provider at the specified index location with a new value provider.
+ The zero-based index of the element to replace.
+ The new value for the element at the specified index.
+ The parameter is null.
+
+
+ Note: This API is now obsolete.Represents a dictionary of value providers for the application.
+
+
+ Initializes a new instance of the class.
+ The controller context.
+
+
+ Adds the specified item to the collection of value providers.
+ The object to add to the object.
+ The object is read-only.
+
+
+ Adds an element that has the specified key and value to the collection of value providers.
+ The key of the element to add.
+ The value of the element to add.
+ The object is read-only.
+
+ is null.
+ An element that has the specified key already exists in the object.
+
+
+ Adds an element that has the specified key and value to the collection of value providers.
+ The key of the element to add.
+ The value of the element to add.
+ The object is read-only.
+
+ is null.
+ An element that has the specified key already exists in the object.
+
+
+ Removes all items from the collection of value providers.
+ The object is read-only.
+
+
+ Determines whether the collection of value providers contains the specified item.
+ true if is found in the collection of value providers; otherwise, false.
+ The object to locate in the instance.
+
+
+ Determines whether the collection of value providers contains an element that has the specified key.
+ true if the collection of value providers contains an element that has the key; otherwise, false.
+ The key of the element to find in the instance.
+
+ is null.
+
+
+ Gets or sets the controller context.
+ The controller context.
+
+
+ Copies the elements of the collection to an array, starting at the specified index.
+ The one-dimensional array that is the destination of the elements copied from the object. The array must have zero-based indexing.
+ The zero-based index in at which copying starts.
+
+ is null.
+
+ is less than 0.
+
+ is multidimensional.-or- is equal to or greater than the length of .-or-The number of elements in the source collection is greater than the available space from to the end of the destination .-or-Type cannot be cast automatically to the type of the destination array.
+
+
+ Gets the number of elements in the collection.
+ The number of elements 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 or sets the object that has the specified key.
+ The object.
+
+
+ Gets a collection that contains the keys of the instance.
+ A collection that contains the keys of the object that implements the interface.
+
+
+ Removes the first occurrence of the specified item from the collection of value providers.
+ true if was successfully removed from the collection; otherwise, false. This method also returns false if is not found in the collection.
+ The object to remove from the instance.
+ The object is read-only.
+
+
+ Removes the element that has the specified key from the collection of value providers.
+ true if the element was successfully removed; otherwise, false. This method also returns false if was not found in the collection.
+ The key of the element to remove.
+ The object is read-only.
+
+ is null.
+
+
+ Returns an enumerator that can be used to iterate through a collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Determines whether the collection contains the specified prefix.
+ true if the collection contains the specified prefix; otherwise, false.
+ The prefix to search for.
+
+
+ Returns a value object using the specified key.
+ The value object for the specified key.
+ The key of the value object to return.
+
+
+ Gets the value of the element that has the specified key.
+ true if the object that implements contains an element that has the specified key; otherwise, false.
+ The key of the element to get.
+ When this method returns, the value that is associated with the specified key, if the key is found; otherwise, the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+
+ Gets a collection that contains the values in the object.
+ A collection of the values in the object that implements the interface.
+
+
+ Represents a container for value-provider factory objects.
+
+
+ Gets the collection of value-provider factories for the application.
+ The collection of value-provider factory objects.
+
+
+ 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 collection of value-provider factories for the application.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified list of value-provider factories.
+ A list of value-provider factories to initialize the collection with.
+
+
+ Removes all elements from the collection.
+
+
+ Returns the value-provider factory for the specified controller context.
+ The value-provider factory object for the specified controller context.
+ An object that encapsulates information about the current HTTP request.
+
+
+ Inserts the specified value-provider factory object at the specified index location.
+ The zero-based index location at which to insert the value provider into the collection.
+ The value-provider factory object to insert.
+ The parameter is null.
+
+
+ Removes the element at the specified index of the .
+ The zero-based index of the element to remove.
+
+ is less than zero.-or- is equal to or greater than
+
+
+ Sets the specified value-provider factory object at the given index location.
+ The zero-based index location at which to insert the value provider into the collection.
+ The value-provider factory object to set.
+ The parameter is null.
+
+
+ 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 by using the specified raw value, attempted value, and culture information.
+ 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.
+
+
+ Converts the value that is encapsulated by this result to the specified type.
+ The converted value.
+ The target type.
+ The parameter is null.
+
+
+ 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.
+ The parameter is null.
+
+
+ Gets or sets the culture.
+ The culture.
+
+
+ Gets or set the raw value that is supplied by the value provider.
+ The raw value.
+
+
+ Encapsulates information that is related to rendering a view.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified controller context, view, view data dictionary, temporary data dictionary, and text writer.
+ Encapsulates information about the HTTP request.
+ The view to render.
+ The dictionary that contains the data that is required in order to render the view.
+ The dictionary that contains temporary data for the view.
+ The text writer object that is used to write HTML output.
+ One of the parameters is null.
+
+
+ Gets or sets a value that indicates whether client-side validation is enabled.
+ true if client-side validation is enabled; otherwise, false.
+
+
+ Gets or sets an object that encapsulates information that is required in order to validate and process the input data from an HTML form.
+ An object that encapsulates information that is required in order to validate and process the input data from an HTML form.
+
+
+ Writes the client validation information to the HTTP response.
+
+
+ Gets data that is associated with this request and that is available for only one request.
+ The temporary data.
+
+
+ Gets or sets a value that indicates whether unobtrusive JavaScript is enabled.
+ true if unobtrusive JavaScript is enabled; otherwise, false.
+
+
+ Gets an object that implements the interface to render in the browser.
+ The view.
+
+
+ Gets the dynamic view data dictionary.
+ The dynamic view data dictionary.
+
+
+ Gets the view data that is passed to the view.
+ The view data.
+
+
+ Gets or sets the text writer object that is used to write HTML output.
+ The object that is used to write the HTML output.
+
+
+ Represents a container that is used to pass data between a controller and a view.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified model.
+ The model.
+
+
+ Initializes a new instance of the class by using the specified dictionary.
+ The dictionary.
+ The parameter is null.
+
+
+ Adds the specified item to the collection.
+ The object to add to the collection.
+ The collection is read-only.
+
+
+ Adds an element to the collection using the specified key and value .
+ The key of the element to add.
+ The value of the element to add.
+ The object is read-only.
+
+ is null.
+ An element with the same key already exists in the object.
+
+
+ Removes all items from the collection.
+ The object is read-only.
+
+
+ Determines whether the collection contains the specified item.
+ true if is found in the collection; otherwise, false.
+ The object to locate in the collection.
+
+
+ Determines whether the collection contains an element that has the specified key.
+ true if the collection contains an element that has the specified key; otherwise, false.
+ The key of the element to locate in the collection.
+
+ is null.
+
+
+ Copies the elements of the collection to an array, starting at a particular index.
+ The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+ is null.
+
+ is less than 0.
+
+ is multidimensional.-or- is equal to or greater than the length of .-or- The number of elements in the source collection is greater than the available space from to the end of the destination .-or- Type cannot be cast automatically to the type of the destination .
+
+
+ Gets the number of elements in the collection.
+ The number of elements in the collection.
+
+
+ Evaluates the specified expression.
+ The results of the evaluation.
+ The expression.
+ The parameter is null or empty.
+
+
+ Evaluates the specified expression by using the specified format.
+ The results of the evaluation.
+ The expression.
+ The format.
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Returns information about the view data as defined by the parameter.
+ An object that contains the view data information that is defined by the parameter.
+ A set of key/value pairs that define the view-data information to return.
+ The parameter is either null or empty.
+
+
+ Gets a value that indicates whether the collection is read-only.
+ true if the collection is read-only; otherwise, false.
+
+
+ Gets or sets the item that is associated with the specified key.
+ The value of the selected item.
+
+
+ Gets a collection that contains the keys of this dictionary.
+ A collection that contains the keys of the object that implements .
+
+
+ Gets or sets the model that is associated with the view data.
+ The model that is associated with the view data.
+
+
+ Gets or sets information about the model.
+ Information about the model.
+
+
+ Gets the state of the model.
+ The state of the model.
+
+
+ Removes the first occurrence of a specified 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 collection.
+ The object to remove from the collection.
+ The collection is read-only.
+
+
+ Removes the element from the collection using the specified key.
+ true if the element is successfully removed; otherwise, false. This method also returns false if was not found in the original collection.
+ The key of the element to remove.
+ The collection is read-only.
+
+ is null.
+
+
+ Sets the data model to use for the view.
+ The data model to use for the view.
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Gets or sets an object that encapsulates information about the current template context.
+ An object that contains information about the current template.
+
+
+ Attempts to retrieve the value that is associated with the specified key.
+ true if the collection contains an element with the specified key; otherwise, false.
+ The key of the value to get.
+ When this method returns, the value that is associated with the specified key, if the key is found; otherwise, the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+
+ Gets a collection that contains the values in this dictionary.
+ A collection that contains the values of the object that implements .
+
+
+ Represents a container that is used to pass strongly typed data between a controller and a view.
+ The type of the model.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class by using the specified view data dictionary.
+ An existing view data dictionary to copy into this instance.
+
+
+ Initializes a new instance of the class by using the specified model.
+ The data model to use for the view.
+
+
+ Gets or sets the model.
+ A reference to the data model.
+
+
+ Gets or sets information about the model.
+ Information about the model.
+
+
+ Sets the data model to use for the view.
+ The data model to use for the view.
+ An error occurred while the model was being set.
+
+
+ Encapsulates information about the current template content that is used to develop templates and about HTML helpers that interact with templates.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the T:System.Web.Mvc.ViewDataInfo class and associates a delegate for accessing the view data information.
+ A delegate that defines how the view data information is accessed.
+
+
+ Gets or sets the object that contains the values to be displayed by the template.
+ The object that contains the values to be displayed by the template.
+
+
+ Gets or sets the description of the property to be displayed by the template.
+ The description of the property to be displayed by the template.
+
+
+ Gets or sets the current value to be displayed by the template.
+ The current value to be displayed by the template.
+
+
+ Represents a collection of view engines that are available to the application.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified list of view engines.
+ The list that is wrapped by the new collection.
+
+ is null.
+
+
+ Removes all elements from the .
+
+
+ Finds the specified partial view by using the specified controller context.
+ The partial view.
+ The controller context.
+ The name of the partial view.
+ The parameter is null.
+ The parameter is null or empty.
+
+
+ Finds the specified view by using the specified controller context and master view.
+ The view.
+ The controller context.
+ The name of the view.
+ The name of the master view.
+ The parameter is null.
+ The parameter is null or empty.
+
+
+ Inserts an element into the collection at the specified index.
+ The zero-based index at which item should be inserted.
+ The object to insert.
+
+ is less than zero.-or- is greater than the number of items in the collection.
+ The parameter is null.
+
+
+ Removes the element at the specified index of the .
+ The zero-based index of the element to remove.
+
+ is less than zero.-or- is equal to or greater than
+
+
+ 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.
+
+ is less than zero.-or- is greater than the number of items in the collection.
+ The parameter is null.
+
+
+ Represents the result of locating a view engine.
+
+
+ Initializes a new instance of the class by using the specified searched locations.
+ The searched locations.
+ The parameter is null.
+
+
+ Initializes a new instance of the class by using the specified view and view engine.
+ The view.
+ The view engine.
+ The or parameter is null.
+
+
+ Gets or sets the searched locations.
+ The searched locations.
+
+
+ Gets or sets the view.
+ The view.
+
+
+ Gets or sets the view engine.
+ The view engine.
+
+
+ Represents a collection of view engines that are available to the application.
+
+
+ Gets the view engines.
+ The view engines.
+
+
+ Represents the information that is needed to build a master view page.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the AJAX script for the master page.
+ The AJAX script for the master page.
+
+
+ Gets the HTML for the master page.
+ The HTML for the master page.
+
+
+ Gets the model.
+ The model.
+
+
+ Gets the temporary data.
+ The temporary data.
+
+
+ Gets the URL.
+ The URL.
+
+
+ Gets the dynamic view-bag dictionary.
+ The dynamic view-bag dictionary.
+
+
+ Gets the view context.
+ The view context.
+
+
+ Gets the view data.
+ The view data.
+
+
+ Gets the writer that is used to render the master page.
+ The writer that is used to render the master page.
+
+
+ Represents the information that is required in order to build a strongly typed master view page.
+ The type of the model.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the AJAX script for the master page.
+ The AJAX script for the master page.
+
+
+ Gets the HTML for the master page.
+ The HTML for the master page.
+
+
+ Gets the model.
+ A reference to the data model.
+
+
+ Gets the view data.
+ The view data.
+
+
+ Represents the properties and methods that are needed to render a view as a Web Forms page.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the object that is used to render HTML in Ajax scenarios.
+ The Ajax helper object that is associated with the view.
+
+
+ Gets or sets the object that is used to render HTML elements.
+ The HTML helper object that is associated with the view.
+
+
+ Initializes the , , and properties.
+
+
+ Gets or sets the path of the master view.
+ The path of the master view.
+
+
+ Gets the Model property of the associated object.
+ The Model property of the associated object.
+
+
+ Raises the event at the beginning of page initialization.
+ The event data.
+
+
+ Enables processing of the specified HTTP request by the ASP.NET MVC framework.
+ An object that encapsulates HTTP-specific information about the current HTTP request.
+
+
+ Initializes the object that receives the page content to be rendered.
+ The object that receives the page content.
+
+
+ Renders the view page to the response using the specified view context.
+ An object that encapsulates the information that is required in order to render the view, which includes the controller context, form context, the temporary data, and the view data for the associated view.
+
+
+ Note: This API is now obsolete.Sets the text writer that is used to render the view to the response.
+ The writer that is used to render the view to the response.
+
+
+ Sets the view data dictionary for the associated view.
+ A dictionary of data to pass to the view.
+
+
+ Gets the temporary data to pass to the view.
+ The temporary data to pass to the view.
+
+
+ Gets or sets the URL of the rendered page.
+ The URL of the rendered page.
+
+
+ Gets the view bag.
+ The view bag.
+
+
+ Gets or sets the information that is used to render the view.
+ The information that is used to render the view, which includes the form context, the temporary data, and the view data of the associated view.
+
+
+ Gets or sets a dictionary that contains data to pass between the controller and the view.
+ A dictionary that contains data to pass between the controller and the view.
+
+
+ Gets the text writer that is used to render the view to the response.
+ The text writer that is used to render the view to the response.
+
+
+ Represents the information that is required in order to render a strongly typed view as a Web Forms page.
+ The type of the model.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the object that supports rendering HTML in Ajax scenarios.
+ The Ajax helper object that is associated with the view.
+
+
+ Gets or sets the object that provides support for rendering elements.
+ The HTML helper object that is associated with the view.
+
+
+ Instantiates and initializes the and properties.
+
+
+ Gets the property of the associated object.
+ A reference to the data model.
+
+
+ Sets the view data dictionary for the associated view.
+ A dictionary of data to pass to the view.
+
+
+ Gets or sets a dictionary that contains data to pass between the controller and the view.
+ A dictionary that contains data to pass between the controller and the view.
+
+
+ Represents a class that is used to render a view by using an instance that is returned by an object.
+
+
+ Initializes a new instance of the class.
+
+
+ Searches the registered view engines and returns the object that is used to render the view.
+ The object that is used to render the view.
+ The controller context.
+ An error occurred while the method was searching for the view.
+
+
+ Gets the name of the master view (such as a master page or template) to use when the view is rendered.
+ The name of the master view.
+
+
+ Represents a base class that is used to provide the model to the view and then render the view to the response.
+
+
+ Initializes a new instance of the class.
+
+
+ When called by the action invoker, renders the view to the response.
+ The context that the result is executed in.
+ The parameter is null.
+
+
+ Returns the object that is used to render the view.
+ The view engine.
+ The context.
+
+
+ Gets the view data model.
+ The view data model.
+
+
+ Gets or sets the object for this result.
+ The temporary data.
+
+
+ Gets or sets the object that is rendered to the response.
+ The view.
+
+
+ Gets the view bag.
+ The view bag.
+
+
+ Gets or sets the view data object for this result.
+ The view data.
+
+
+ Gets or sets the collection of view engines that are associated with this result.
+ The collection of view engines.
+
+
+ Gets or sets the name of the view to render.
+ The name of the view.
+
+
+ Provides an abstract class that can be used to implement a view start (master) page.
+
+
+ When implemented in a derived class, initializes a new instance of the class.
+
+
+ When implemented in a derived class, gets the HTML markup for the view start page.
+ The HTML markup for the view start page.
+
+
+ When implemented in a derived class, gets the URL for the view start page.
+ The URL for the view start page.
+
+
+ When implemented in a derived class, gets the view context for the view start page.
+ The view context for the view start page.
+
+
+ Provides a container for objects.
+
+
+ Initializes a new instance of the class.
+
+
+ Provides a container for objects.
+ The type of the model.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the formatted value.
+ The formatted value.
+
+
+ Represents the type of a view.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the name of the type.
+ The name of the type.
+
+
+ Represents the information that is needed to build a user control.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the AJAX script for the view.
+ The AJAX script for the view.
+
+
+ Ensures that view data is added to the object of the user control if the view data exists.
+
+
+ Gets the HTML for the view.
+ The HTML for the view.
+
+
+ Gets the model.
+ The model.
+
+
+ Renders the view by using the specified view context.
+ The view context.
+
+
+ Sets the text writer that is used to render the view to the response.
+ The writer that is used to render the view to the response.
+
+
+ Sets the view-data dictionary by using the specified view data.
+ The view data.
+
+
+ Gets the temporary-data dictionary.
+ The temporary-data dictionary.
+
+
+ Gets the URL for the view.
+ The URL for the view.
+
+
+ Gets the view bag.
+ The view bag.
+
+
+ Gets or sets the view context.
+ The view context.
+
+
+ Gets or sets the view-data dictionary.
+ The view-data dictionary.
+
+
+ Gets or sets the view-data key.
+ The view-data key.
+
+
+ Gets the writer that is used to render the view to the response.
+ The writer that is used to render the view to the response.
+
+
+ Represents the information that is required in order to build a strongly typed user control.
+ The type of the model.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets the AJAX script for the view.
+ The AJAX script for the view.
+
+
+ Gets the HTML for the view.
+ The HTML for the view.
+
+
+ Gets the model.
+ A reference to the data model.
+
+
+ Sets the view data for the view.
+ The view data.
+
+
+ Gets or sets the view data.
+ The view data.
+
+
+ Represents an abstract base-class implementation of the interface.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the area-enabled master location formats.
+ The area-enabled master location formats.
+
+
+ Gets or sets the area-enabled partial-view location formats.
+ The area-enabled partial-view location formats.
+
+
+ Gets or sets the area-enabled view location formats.
+ The area-enabled view location formats.
+
+
+ Creates the specified partial view by using the specified controller context.
+ A reference to the partial view.
+ The controller context.
+ The partial path for the new partial view.
+
+
+ Creates the specified view by using the controller context, path of the view, and path of the master view.
+ A reference to the view.
+ The controller context.
+ The path of the view.
+ The path of the master view.
+
+
+ Gets or sets the display mode provider.
+ The display mode provider.
+
+
+ Returns a value that indicates whether the file is in the specified path by using the specified controller context.
+ true if the file is in the specified path; otherwise, false.
+ The controller context.
+ The virtual path.
+
+
+ Gets or sets the file-name extensions that are used to locate a view.
+ The file-name extensions that are used to locate a view.
+
+
+ Finds the specified partial view by using the specified controller context.
+ The partial view.
+ The controller context.
+ The name of the partial view.
+ true to use the cached partial view.
+ The parameter is null (Nothing in Visual Basic).
+ The parameter is null or empty.
+
+
+ Finds the specified view by using the specified controller context and master view name.
+ The page view.
+ The controller context.
+ The name of the view.
+ The name of the master view.
+ true to use the cached view.
+ The parameter is null (Nothing in Visual Basic).
+ The parameter is null or empty.
+
+
+ Gets or sets the master location formats.
+ The master location formats.
+
+
+ Gets or sets the partial-view location formats.
+ The partial-view location formats.
+
+
+ Releases the specified view by using the specified controller context.
+ The controller context.
+ The view to release.
+
+
+ Gets or sets the view location cache.
+ The view location cache.
+
+
+ Gets or sets the view location formats.
+ The view location formats.
+
+
+ Gets or sets the virtual path provider.
+ The virtual path provider.
+
+
+ Represents the information that is needed to build a Web Forms page in ASP.NET MVC.
+
+
+ Initializes a new instance of the class using the controller context and view path.
+ The controller context.
+ The view path.
+
+
+ Initializes a new instance of the class using the controller context, view path, and the path to the master page.
+ The controller context.
+ The view path.
+ The path to the master page.
+
+
+ Initializes a new instance of the class using the controller context, view path, the path to the master page, and a instance.
+ The controller context.
+ The view path.
+ The path to the master page.
+ An instance of the view page activator interface.
+
+
+ Gets or sets the master path.
+ The master path.
+
+
+ Renders the view to the response.
+ An object that encapsulates the information that is required in order to render the view, which includes the controller context, form context, the temporary data, and the view data for the associated view.
+ The text writer object that is used to write HTML output.
+ The view page instance.
+
+
+ Represents a view engine that is used to render a Web Forms page to the response.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the specified view page activator.
+ An instance of a class that implements the interface.
+
+
+ Creates the specified partial view by using the specified controller context.
+ The partial view.
+ The controller context.
+ The partial path.
+
+
+ Creates the specified view by using the specified controller context and the paths of the view and master view.
+ The view.
+ The controller context.
+ The view path.
+ The master-view path.
+
+
+ Represents the properties and methods that are needed in order to render a view that uses ASP.NET Razor syntax.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the object that is used to render HTML using Ajax.
+ The object that is used to render HTML using Ajax.
+
+
+ Sets the view context and view data for the page.
+ The parent page.
+
+
+ Gets the object that is associated with the page.
+ The object that is associated with the page.
+
+
+ Runs the page hierarchy for the ASP.NET Razor execution pipeline.
+
+
+ Gets or sets the object that is used to render HTML elements.
+ The object that is used to render HTML elements.
+
+
+ Initializes the , , and classes.
+
+
+ Gets the Model property of the associated object.
+ The Model property of the associated object.
+
+
+ Sets the view data.
+ The view data.
+
+
+ Gets the temporary data to pass to the view.
+ The temporary data to pass to the view.
+
+
+ Gets or sets the URL of the rendered page.
+ The URL of the rendered page.
+
+
+ Gets the view bag.
+ The view bag.
+
+
+ Gets or sets the information that is used to render the view.
+ The information that is used to render the view, which includes the form context, the temporary data, and the view data of the associated view.
+
+
+ Gets or sets a dictionary that contains data to pass between the controller and the view.
+ A dictionary that contains data to pass between the controller and the view.
+
+
+ Represents the properties and methods that are needed in order to render a view that uses ASP.NET Razor syntax.
+ The type of the view data model.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the object that is used to render HTML markup using Ajax.
+ The object that is used to render HTML markup using Ajax.
+
+
+ Gets or sets the object that is used to render HTML elements.
+ The object that is used to render HTML elements.
+
+
+ Initializes the , , and classes.
+
+
+ Gets the Model property of the associated object.
+ The Model property of the associated object.
+
+
+ Sets the view data.
+ The view data.
+
+
+ Gets or sets a dictionary that contains data to pass between the controller and the view.
+ A dictionary that contains data to pass between the controller and the view.
+
+
+ Represents support for ASP.NET AJAX within an ASP.NET MVC application.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the action method.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ The name of the controller.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the action method that will handle the request.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element..
+
+
+ Writes an opening <form> tag to the response.
+ An opening <form> tag.
+ The AJAX helper.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response using the specified routing information.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response using the specified routing information.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response using the specified routing information.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the route to use to obtain the form post URL.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response using the specified routing information.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+
+
+ Writes an opening <form> tag to the response using the specified routing information.
+ An opening <form> tag.
+ The AJAX helper.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML script element that contains a reference to a globalization script that defines the culture information.
+ A script element whose src attribute is set to the globalization script, as in the following example: <script type="text/javascript" src="/MvcApplication1/Scripts/Globalization/en-US.js"></script>
+ The AJAX helper object that this method extends.
+
+
+ Returns an HTML script element that contains a reference to a globalization script that defines the specified culture information.
+ An HTML script element whose src attribute is set to the globalization script, as in the following example:<script type="text/javascript" src="/MvcApplication1/Scripts/Globalization/en-US.js"></script>
+ The AJAX helper object that this method extends.
+ Encapsulates information about the target culture, such as date formats.
+ The parameter is null.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ The name of the route to use to obtain the form post URL.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ The parameter is null or empty.
+
+
+ Returns an anchor element that contains the virtual path for the specified route values; when the link is clicked, a request is made to the virtual path asynchronously by using JavaScript.
+ An anchor element.
+ The AJAX helper.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route.
+ An object that provides options for the asynchronous request.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Represents option settings for running Ajax scripts in an ASP.NET MVC application.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the message to display in a confirmation window before a request is submitted.
+ The message to display in a confirmation window.
+
+
+ Gets or sets the HTTP request method ("Get" or "Post").
+ The HTTP request method. The default value is "Post".
+
+
+ Gets or sets the mode that specifies how to insert the response into the target DOM element.
+ The insertion mode ("InsertAfter", "InsertBefore", or "Replace"). The default value is "Replace".
+
+
+ Gets or sets a value, in milliseconds, that controls the duration of the animation when showing or hiding the loading element.
+ A value, in milliseconds, that controls the duration of the animation when showing or hiding the loading element.
+
+
+ Gets or sets the id attribute of an HTML element that is displayed while the Ajax function is loading.
+ The ID of the element that is displayed while the Ajax function is loading.
+
+
+ Gets or sets the name of the JavaScript function to call immediately before the page is updated.
+ The name of the JavaScript function to call before the page is updated.
+
+
+ Gets or sets the JavaScript function to call when response data has been instantiated but before the page is updated.
+ The JavaScript function to call when the response data has been instantiated.
+
+
+ Gets or sets the JavaScript function to call if the page update fails.
+ The JavaScript function to call if the page update fails.
+
+
+ Gets or sets the JavaScript function to call after the page is successfully updated.
+ The JavaScript function to call after the page is successfully updated.
+
+
+ Returns the Ajax options as a collection of HTML attributes to support unobtrusive JavaScript.
+ The Ajax options as a collection of HTML attributes to support unobtrusive JavaScript.
+
+
+ Gets or sets the ID of the DOM element to update by using the response from the server.
+ The ID of the DOM element to update.
+
+
+ Gets or sets the URL to make the request to.
+ The URL to make the request to.
+
+
+ Enumerates the AJAX script insertion modes.
+
+
+ Insert after the element.
+
+
+ Insert before the element.
+
+
+ Replace the element.
+
+
+ Provides information about an asynchronous action method, such as its name, controller, parameters, attributes, and filters.
+
+
+ Initializes a new instance of the class.
+
+
+ Invokes the asynchronous action method by using the specified parameters and controller context.
+ An object that contains the result of an asynchronous call.
+ The controller context.
+ The parameters of the action method.
+ The callback method.
+ An object that contains information to be used by the callback method. This parameter can be null.
+
+
+ Returns the result of an asynchronous operation.
+ The result of an asynchronous operation.
+ An object that represents the status of an asynchronous operation.
+
+
+ Executes the asynchronous action method by using the specified parameters and controller context.
+ The result of executing the asynchronous action method.
+ The controller context.
+ The parameters of the action method.
+
+
+ Represents a class that is responsible for invoking the action methods of an asynchronous controller.
+
+
+ Initializes a new instance of the class.
+
+
+ Invokes the asynchronous action method by using the specified controller context, action name, callback method, and state.
+ An object that contains the result of an asynchronous operation.Implements
+ The controller context.
+ The name of the action.
+ The callback method.
+ An object that contains information to be used by the callback method. This parameter can be null.
+
+
+ Invokes the asynchronous action method by using the specified controller context, action descriptor, parameters, callback method, and state.
+ An object that contains the result of an asynchronous operation.
+ The controller context.
+ The action descriptor.
+ The parameters for the asynchronous action method.
+ The callback method.
+ An object that contains information to be used by the callback method. This parameter can be null.
+
+
+ Invokes the asynchronous action method by using the specified controller context, filters, action descriptor, parameters, callback method, and state.
+ An object that contains the result of an asynchronous operation.
+ The controller context.
+ The filters.
+ The action descriptor.
+ The parameters for the asynchronous action method.
+ The callback method.
+ An object that contains information to be used by the callback method. This parameter can be null.
+
+
+ Cancels the action.
+ true if the action was canceled; otherwise, false.
+ The user-defined object that qualifies or contains information about an asynchronous operation.
+
+
+ Cancels the action.
+ true if the action was canceled; otherwise, false.
+ The user-defined object that qualifies or contains information about an asynchronous operation.
+
+
+ Cancels the action.
+ true if the action was canceled; otherwise, false.
+ The user-defined object that qualifies or contains information about an asynchronous operation.
+
+
+ Returns the controller descriptor.
+ The controller descriptor.
+ The controller context.
+
+
+ Provides asynchronous operations for the class.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class using the synchronization context.
+ The synchronization context.
+
+
+ Notifies ASP.NET that all asynchronous operations are complete.
+
+
+ Occurs when the method is called.
+
+
+ Gets the number of outstanding operations.
+ The number of outstanding operations.
+
+
+ Gets the parameters that were passed to the asynchronous completion method.
+ The parameters that were passed to the asynchronous completion method.
+
+
+ Executes a callback in the current synchronization context.
+ The asynchronous action.
+
+
+ Gets or sets the asynchronous timeout value, in milliseconds.
+ The asynchronous timeout value, in milliseconds.
+
+
+ Defines the interface for an action invoker, which is used to invoke an asynchronous action in response to an HTTP request.
+
+
+ Invokes the specified action.
+ The status of the asynchronous result.
+ The controller context.
+ The name of the asynchronous action.
+ The callback method.
+ The state.
+
+
+ Cancels the asynchronous action.
+ true if the asynchronous method could be canceled; otherwise, false.
+ The asynchronous result.
+
+
+ Defines the methods that are required for an asynchronous controller.
+
+
+ Executes the specified request context.
+ The status of the asynchronous operation.
+ The request context.
+ The asynchronous callback method.
+ The state.
+
+
+ Ends the asynchronous operation.
+ The asynchronous result.
+
+
+ Provides a container for the asynchronous manager object.
+
+
+ Gets the asynchronous manager object.
+ The asynchronous manager object.
+
+
+ Provides a container that maintains a count of pending asynchronous operations.
+
+
+ Initializes a new instance of the class.
+
+
+ Occurs when an asynchronous method completes.
+
+
+ Gets the operation count.
+ The operation count.
+
+
+ Reduces the operation count by 1.
+ The updated operation count.
+
+
+ Reduces the operation count by the specified value.
+ The updated operation count.
+ The number of operations to reduce the count by.
+
+
+ Increments the operation count by one.
+ The updated operation count.
+
+
+ Increments the operation count by the specified value.
+ The updated operation count.
+ The number of operations to increment the count by.
+
+
+ Provides information about an asynchronous action method, such as its name, controller, parameters, attributes, and filters.
+
+
+ Initializes a new instance of the class.
+ An object that contains information about the method that begins the asynchronous operation (the method whose name ends with "Asynch").
+ An object that contains information about the completion method (method whose name ends with "Completed").
+ The name of the action.
+ The controller descriptor.
+
+
+ Gets the name of the action method.
+ The name of the action method.
+
+
+ Gets the method information for the asynchronous action method.
+ The method information for the asynchronous action method.
+
+
+ Begins running the asynchronous action method by using the specified parameters and controller context.
+ An object that contains the result of an asynchronous call.
+ The controller context.
+ The parameters of the action method.
+ The callback method.
+ An object that contains information to be used by the callback method. This parameter can be null.
+
+
+ Gets the method information for the asynchronous completion method.
+ The method information for the asynchronous completion method.
+
+
+ Gets the controller descriptor for the asynchronous action method.
+ The controller descriptor for the asynchronous action method.
+
+
+ Returns the result of an asynchronous operation.
+ The result of an asynchronous operation.
+ An object that represents the status of an asynchronous operation.
+
+
+ Returns an array of custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Returns an array of custom attributes that are defined for this member, identified by type.
+ An array of custom attributes, or an empty array if no custom attributes of the specified type exist.
+ The type of the custom attributes to return.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Gets the filter attributes.
+ The filter attributes.
+ Use cache flag.
+
+
+ Returns the parameters of the action method.
+ The parameters of the action method.
+
+
+ Returns the action-method selectors.
+ The action-method selectors.
+
+
+ Determines whether one or more instances of the specified attribute type are defined for the action member.
+ true if an attribute of type that is represented by is defined for this member; otherwise, false.
+ The type of the custom attribute.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Gets the lazy initialized unique ID of the instance of this class.
+ The lazy initialized unique ID of the instance of this class.
+
+
+ Encapsulates information that describes an asynchronous controller, such as its name, type, and actions.
+
+
+ Initializes a new instance of the class.
+ The type of the controller.
+
+
+ Gets the type of the controller.
+ The type of the controller.
+
+
+ Finds an action method by using the specified name and controller context.
+ The information about the action method.
+ The controller context.
+ The name of the action.
+
+
+ Returns a list of action method descriptors in the controller.
+ A list of action method descriptors in the controller.
+
+
+ Returns custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Returns custom attributes of a specified type that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Gets the filter attributes.
+ The filter attributes.
+ true to use the cache, otherwise false.
+
+
+ Returns a value that indicates whether one or more instances of the specified custom attribute are defined for this member.
+ true if an attribute of the type represented by is defined for this member; otherwise, false.
+ The type of the custom attribute.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Represents an exception that occurred during the synchronous processing of an HTTP request in an ASP.NET MVC application.
+
+
+ Initializes a new instance of the class using a system-supplied message.
+
+
+ Initializes a new instance of the class using the specified message.
+ The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.
+
+
+ Initializes a new instance of the class using a specified error message and a reference to the inner exception that is the cause of this exception.
+ The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.
+ The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception.
+
+
+ When an action method returns either Task or Task<T> the provides information about the action.
+
+
+ Initializes a new instance of the class.
+ The task method information.
+ The action name.
+ The controller descriptor.
+
+
+ Gets the name of the action method.
+ The name of the action method.
+
+
+ Invokes the asynchronous action method using the specified parameters, controller context callback and state.
+ An object that contains the result of an asynchronous call.
+ The controller context.
+ The parameters of the action method.
+ The optional callback method.
+ An object that contains information to be used by the callback method. This parameter can be null.
+
+
+ Gets the controller descriptor.
+ The controller descriptor.
+
+
+ Ends the asynchronous operation.
+ The result of an asynchronous operation.
+ An object that represents the status of an asynchronous operation.
+
+
+ Executes the asynchronous action method
+ The result of executing the asynchronous action method.
+ The controller context.
+ The parameters of the action method.
+
+
+ Returns an array of custom attributes that are defined for this member, excluding named attributes.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Returns an array of custom attributes that are defined for this member, identified by type.
+ An array of custom attributes, or an empty array if no custom attributes exist.
+ The type of the custom attributes.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Returns an array of all custom attributes applied to this member.
+ An array that contains all the custom attributes applied to this member, or an array with zero elements if no attributes are defined.
+ true to search this member's inheritance chain to find the attributes; otherwise, false.
+
+
+ Returns the parameters of the asynchronous action method.
+ The parameters of the asynchronous action method.
+
+
+ Returns the asynchronous action-method selectors.
+ The asynchronous action-method selectors.
+
+
+ Returns a value that indicates whether one or more instance of the specified custom attribute are defined for this member.
+ A value that indicates whether one or more instance of the specified custom attribute are defined for this member.
+ The type of the custom attribute.
+ true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
+
+
+ Gets information for the asynchronous task.
+ Information for the asynchronous task.
+
+
+ Gets the unique ID for the task.
+ The unique ID for the task.
+
+
+ Represents an authentication challenge context containing information for executing an authentication challenge.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The controller context.
+ The action methods associated with the challenge.
+ The challenge response.
+
+
+ Gets or sets the action descriptor.
+ The action descriptor associated with the challenge.
+
+
+ Gets or sets the action result to execute.
+ The challenge response.
+
+
+ Represents an authentication context containing information for performing authentication.
+
+
+ Initializes a new instance of the class.
+
+
+
+ Gets or sets the action descriptor.
+ The action methods associated with the authentication
+
+
+ Gets or sets the currently authenticated principal.
+ The security credentials for the authentication.
+
+
+ Gets or sets the error result, which indicates that authentication was attempted and failed.
+ The authentication result.
+
+
+ Defines a filter that performs authentication.
+
+
+ Authenticates the request.
+ The context to use for authentication.
+
+
+ Adds an authentication challenge to the current .
+ The context to use for the authentication challenge.
+
+
+ Defines a filter that overrides other filters.
+
+
+ Gets the type of filters to override.
+ The filter to override.
+
+
+ Represents support for calling child action methods and rendering the result inline in a parent view.
+
+
+ Invokes the specified child action method and returns the result as an HTML string.
+ The child action result as an HTML string.
+ The HTML helper instance that this method extends.
+ The name of the action method to invoke.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method with the specified parameters and returns the result as an HTML string.
+ The child action result as an HTML string.
+ The HTML helper instance that this method extends.
+ The name of the action method to invoke.
+ An object that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified controller name and returns the result as an HTML string.
+ The child action result as an HTML string.
+ The HTML helper instance that this method extends.
+ The name of the action method to invoke.
+ The name of the controller that contains the action method.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and controller name and returns the result as an HTML string.
+ The child action result as an HTML string.
+ The HTML helper instance that this method extends.
+ The name of the action method to invoke.
+ The name of the controller that contains the action method.
+ An object that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and controller name and returns the result as an HTML string.
+ The child action result as an HTML string.
+ The HTML helper instance that this method extends.
+ The name of the action method to invoke.
+ The name of the controller that contains the action method.
+ A dictionary that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and returns the result as an HTML string.
+ The child action result as an HTML string.
+ The HTML helper instance that this method extends.
+ The name of the action method to invoke.
+ A dictionary that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method and renders the result inline in the parent view.
+ The HTML helper instance that this method extends.
+ The name of the child action method to invoke.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and renders the result inline in the parent view.
+ The HTML helper instance that this method extends.
+ The name of the child action method to invoke.
+ An object that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified controller name and renders the result inline in the parent view.
+ The HTML helper instance that this method extends.
+ The name of the child action method to invoke.
+ The name of the controller that contains the action method.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and controller name and renders the result inline in the parent view.
+ The HTML helper instance that this method extends.
+ The name of the child action method to invoke.
+ The name of the controller that contains the action method.
+ An object that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and controller name and renders the result inline in the parent view.
+ The HTML helper instance that this method extends.
+ The name of the child action method to invoke.
+ The name of the controller that contains the action method.
+ A dictionary that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Invokes the specified child action method using the specified parameters and renders the result inline in the parent view.
+ The HTML helper instance that this method extends.
+ The name of the child action method to invoke.
+ A dictionary that contains the parameters for a route. You can use to provide the parameters that are bound to the action method parameters. The parameter is merged with the original route values and overrides them.
+ The parameter is null.
+ The parameter is null or empty.
+ The required virtual path data cannot be found.
+
+
+ Represents support for rendering object values as HTML.
+
+
+ Returns HTML markup for each property in the object that is represented by a string expression.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+
+
+ Returns HTML markup for each property in the object that is represented by a string expression, using additional view data.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns HTML markup for each property in the object that is represented by the expression, using the specified template.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+
+
+ Returns HTML markup for each property in the object that is represented by the expression, using the specified template and additional view data.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns HTML markup for each property in the object that is represented by the expression, using the specified template and an HTML field ID.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+
+
+ Returns HTML markup for each property in the object that is represented by the expression, using the specified template, HTML field ID, and additional view data.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns HTML markup for each property in the object that is represented by the expression.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The type of the model.
+ The type of the value.
+
+
+ Returns a string that contains each property value in the object that is represented by the specified expression, using additional view data.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+ The type of the model.
+ The type of the value.
+
+
+ Returns a string that contains each property value in the object that is represented by the , using the specified template.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ The type of the model.
+ The type of the value.
+
+
+ Returns a string that contains each property value in the object that is represented by the specified expression, using the specified template and additional view data.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+ The type of the model.
+ The type of the value.
+
+
+ Returns HTML markup for each property in the object that is represented by the , using the specified template and an HTML field ID.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ The type of the model.
+ The type of the value.
+
+
+ Returns HTML markup for each property in the object that is represented by the specified expression, using the template, an HTML field ID, and additional view data.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template that is used to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+ The type of the model.
+ The type of the value.
+
+
+ Returns HTML markup for each property in the model.
+ The HTML markup for each property in the model.
+ The HTML helper instance that this method extends.
+
+
+ Returns HTML markup for each property in the model, using additional view data.
+ The HTML markup for each property in the model.
+ The HTML helper instance that this method extends.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns HTML markup for each property in the model using the specified template.
+ The HTML markup for each property in the model.
+ The HTML helper instance that this method extends.
+ The name of the template that is used to render the object.
+
+
+ Returns HTML markup for each property in the model, using the specified template and additional view data.
+ The HTML markup for each property in the model.
+ The HTML helper instance that this method extends.
+ The name of the template that is used to render the object.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns HTML markup for each property in the model using the specified template and HTML field ID.
+ The HTML markup for each property in the model.
+ The HTML helper instance that this method extends.
+ The name of the template that is used to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+
+
+ Returns HTML markup for each property in the model, using the specified template, an HTML field ID, and additional view data.
+ The HTML markup for each property in the model.
+ The HTML helper instance that this method extends.
+ The name of the template that is used to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Provides a mechanism to get display names.
+
+
+ Gets the display name.
+ The display name.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the display name.
+
+
+ Gets the display name for the model.
+ The display name for the model.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the display name.
+ The type of the model.
+ The type of the value.
+
+
+ Gets the display name for the model.
+ The display name for the model.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the display name.
+ The type of the model.
+ The type of the value.
+
+
+ Gets the display name for the model.
+ The display name for the model.
+ The HTML helper instance that this method extends.
+
+
+ Provides a way to render object values as HTML.
+
+
+ Returns HTML markup for each property in the object that is represented by the specified expression.
+ The HTML markup for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+
+
+ Returns HTML markup for each property in the object that is represented by the specified expression.
+ The HTML markup for each property.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The type of the model.
+ The type of the result.
+
+
+ Represents support for the HTML input element in an application.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using additional view data.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template and additional view data.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template and HTML field name.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template, HTML field name, and additional view data.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using additional view data.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template and additional view data.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template and HTML field name.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML input element for each property in the object that is represented by the expression, using the specified template, HTML field name, and additional view data.
+ An HTML input element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ The name of the template to use to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML input element for each property in the model.
+ An HTML input element for each property in the model.
+ The HTML helper instance that this method extends.
+
+
+ Returns an HTML input element for each property in the model, using additional view data.
+ An HTML input element for each property in the model.
+ The HTML helper instance that this method extends.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns an HTML input element for each property in the model, using the specified template.
+ An HTML input element for each property in the model and in the specified template.
+ The HTML helper instance that this method extends.
+ The name of the template to use to render the object.
+
+
+ Returns an HTML input element for each property in the model, using the specified template and additional view data.
+ An HTML input element for each property in the model.
+ The HTML helper instance that this method extends.
+ The name of the template to use to render the object.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Returns an HTML input element for each property in the model, using the specified template name and HTML field name.
+ An HTML input element for each property in the model and in the named template.
+ The HTML helper instance that this method extends.
+ The name of the template to use to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+
+
+ Returns an HTML input element for each property in the model, using the template name, HTML field name, and additional view data.
+ An HTML input element for each property in the model.
+ The HTML helper instance that this method extends.
+ The name of the template to use to render the object.
+ A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
+ An anonymous object that can contain additional view data that will be merged into the instance that is created for the template.
+
+
+ Provides methods for working with enumeration values and select lists.
+
+
+ Gets a list of objects corresponding to enum constants defined in the given type.
+ A list for the given .
+ The type to evaluate.
+
+
+ Gets a list of objects corresponding to enum constants defined in the given type. Also ensures the will round-trip even if it does not match a defined constant and sets the Selected property to true for one element in the returned list -- matching the .
+ A list for the given , possibly extended to include an unrecognized .
+ The type to evaluate.
+ The value from type to select.
+
+
+ Gets a list of objects corresponding to enum constants defined in the given metadata.
+ A list for the given metadata.
+ The model metadata to evaluate.
+
+
+ Gets a list of objects corresponding to enum constants defined in the given metadata. Also ensures the value will round-trip even if it does not match a defined constant and sets the Selected property to true for one element in the returned list -- matching the value.
+ A list for the given , possibly extended to include an unrecognized .
+ The metadata to evaluate.
+ Value from the type of metadata to select.
+
+
+ Gets a value indicating whether the given type or an expression of this type is suitable for use in and calls.
+ true if will not throw when passed the given type and will not throw when passed an expression of this type; otherwise, false.
+ The type to check.
+
+
+ Gets a value indicating whether the given metadata or associated expression is suitable for use in and calls.
+ true if will return not throw when passed given and will not throw when passed associated expression; otherwise, false.
+ The metadata to check.
+
+
+ Represents support for HTML in an application.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ The HTTP method for processing the form, either GET or POST.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ The HTTP method for processing the form, either GET or POST.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ The HTTP method for processing the form, either GET or POST.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the action method.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ An object that contains the parameters for a route.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ The HTTP method for processing the form, either GET or POST.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ The HTTP method for processing the form, either GET or POST.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ An object that contains the parameters for a route
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ An object that contains the parameters for a route
+ The HTTP method for processing the form, either GET or POST.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ The name of the route to use to obtain the form-post URL.
+ An object that contains the parameters for a route
+ The HTTP method for processing the form, either GET or POST.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by the route target.
+ An opening <form> tag.
+ The HTML helper instance that this method extends.
+ An object that contains the parameters for a route
+
+
+ Renders the closing </form> tag to the response.
+ The HTML helper instance that this method extends.
+
+
+ Represents support for HTML input controls in an application.
+
+
+ Returns a check box input element by using the specified HTML helper and the name of the form field.
+ An input element whose type attribute is set to "checkbox".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+
+
+ Returns a check box input element by using the specified HTML helper, the name of the form field, and a value to indicate whether the check box is selected.
+ An input element whose type attribute is set to "checkbox".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+ true to select the check box; otherwise, false.
+
+
+ Returns a check box input element by using the specified HTML helper, the name of the form field, a value to indicate whether the check box is selected, and the HTML attributes.
+ An input element whose type attribute is set to "checkbox".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+ true to select the check box; otherwise, false.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a check box input element by using the specified HTML helper, the name of the form field, a value that indicates whether the check box is selected, and the HTML attributes.
+ An input element whose type attribute is set to "checkbox".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+ true to select the check box; otherwise, false.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a check box input element by using the specified HTML helper, the name of the form field, and the HTML attributes.
+ An input element whose type attribute is set to "checkbox".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a check box input element by using the specified HTML helper, the name of the form field, and the HTML attributes.
+ An input element whose type attribute is set to "checkbox".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a check box input element for each property in the object that is represented by the specified expression.
+ An HTML input element whose type attribute is set to "checkbox" for each property in the object that is represented by the specified expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The parameter is null.
+
+
+ Returns a check box input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "checkbox" for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The parameter is null.
+
+
+ Returns a check box input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "checkbox" for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The parameter is null.
+
+
+ Returns a hidden input element by using the specified HTML helper and the name of the form field.
+ An input element whose type attribute is set to "hidden".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+
+
+ Returns a hidden input element by using the specified HTML helper, the name of the form field, and the value.
+ An input element whose type attribute is set to "hidden".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the hidden input element. The value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object. If the element is not found in the or the , the value parameter is used.
+
+
+ Returns a hidden input element by using the specified HTML helper, the name of the form field, the value, and the HTML attributes.
+ An input element whose type attribute is set to "hidden".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the hidden input element. The value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object. If the element is not found in the object or the object, the value parameter is used.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a hidden input element by using the specified HTML helper, the name of the form field, the value, and the HTML attributes.
+ An input element whose type attribute is set to "hidden".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the hidden input element The value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object. If the element is not found in the object or the object, the value parameter is used.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML hidden input element for each property in the object that is represented by the specified expression.
+ An input element whose type attribute is set to "hidden" for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The type of the property.
+
+
+ Returns an HTML hidden input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An input element whose type attribute is set to "hidden" for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+
+
+ Returns an HTML hidden input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An input element whose type attribute is set to "hidden" for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+
+
+ Returns a password input element by using the specified HTML helper and the name of the form field.
+ An input element whose type attribute is set to "password".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+
+
+ Returns a password input element by using the specified HTML helper, the name of the form field, and the value.
+ An input element whose type attribute is set to "password".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the password input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+
+
+ Returns a password input element by using the specified HTML helper, the name of the form field, the value, and the HTML attributes.
+ An input element whose type attribute is set to "password".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the password input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a password input element by using the specified HTML helper, the name of the form field, the value, and the HTML attributes.
+ An input element whose type attribute is set to "password".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the password input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a password input element for each property in the object that is represented by the specified expression.
+ An HTML input element whose type attribute is set to "password" for each property in the object that is represented by the specified expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns a password input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "password" for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns a password input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "password" for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns a radio button input element that is used to present mutually exclusive options.
+ An input element whose type attribute is set to "radio".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ The parameter is null or empty.
+ The parameter is null.
+
+
+ Returns a radio button input element that is used to present mutually exclusive options.
+ An input element whose type attribute is set to "radio".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ true to select the radio button; otherwise, false.
+ The parameter is null or empty.
+ The parameter is null.
+
+
+ Returns a radio button input element that is used to present mutually exclusive options.
+ An input element whose type attribute is set to "radio".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ true to select the radio button; otherwise, false.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+ The parameter is null.
+
+
+ Returns a radio button input element that is used to present mutually exclusive options.
+ An input element whose type attribute is set to "radio".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ true to select the radio button; otherwise, false.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+ The parameter is null.
+
+
+ Returns a radio button input element that is used to present mutually exclusive options.
+ An input element whose type attribute is set to "radio".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+ The parameter is null.
+
+
+ Returns a radio button input element that is used to present mutually exclusive options.
+ An input element whose type attribute is set to "radio".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+ The parameter is null.
+
+
+ Returns a radio button input element for each property in the object that is represented by the specified expression.
+ An HTML input element whose type attribute is set to "radio" for each property in the object that is represented by the specified expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns a radio button input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "radio" for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns a radio button input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "radio" for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ If this radio button is selected, the value of the radio button that is submitted when the form is posted. If the value of the selected radio button in the or the object matches this value, this radio button is selected.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns a text input element by using the specified HTML helper and the name of the form field.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+
+
+ Returns a text input element by using the specified HTML helper, the name of the form field, and the value.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the text input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+
+
+ Returns a text input element by using the specified HTML helper, the name of the form field, the value, and the HTML attributes.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the text input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a text input element by using the specified HTML helper, the name of the form field, the value, and the HTML attributes.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the text input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a text input element.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field.
+ The value of the text input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ A string that is used to format the input.
+
+
+ Returns a text input element.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the text input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ A string that is used to format the input.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a text input element.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ The name of the form field and the key that is used to look up the value.
+ The value of the text input element. If this value is null, the value of the element is retrieved from the object. If no value exists there, the value is retrieved from the object.
+ A string that is used to format the input.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns a text input element for each property in the object that is represented by the specified expression.
+ An HTML input element whose type attribute is set to "text" for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The type of the value.
+ The parameter is null or empty.
+
+
+ Returns a text input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element type attribute is set to "text" for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null or empty.
+
+
+ Returns a text input element for each property in the object that is represented by the specified expression, using the specified HTML attributes.
+ An HTML input element whose type attribute is set to "text" for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null or empty.
+
+
+ Returns a text input element.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A string that is used to format the input.
+ The type of the model.
+ The type of the value.
+
+
+ Returns a text input element.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A string that is used to format the input.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns a text input element.
+ An input element whose type attribute is set to "text".
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A string that is used to format the input.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Represents support for the HTML label element in an ASP.NET MVC view.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression using the label text.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The label text to display.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The label text.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The label text.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The value.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression using the label text.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The label text to display.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The label text to display.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the property to display.
+ The label text.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The Value.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the model.
+ An HTML label element and the property name of the property that is represented by the model.
+ The HTML helper instance that this method extends.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression using the label text.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ The label text to display.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ The label Text.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML label element and the property name of the property that is represented by the specified expression.
+ An HTML label element and the property name of the property that is represented by the expression.
+ The HTML helper instance that this method extends.
+ The label text.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Represents support for HTML links in an application.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ An object that contains the HTML attributes for the element. The attributes are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ The name of the controller.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ The name of the controller.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ The name of the controller.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ The name of the controller.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ The name of the controller.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ An object that contains the parameters for a route.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the action.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ The protocol for the URL, such as "http" or "https".
+ The host name for the URL.
+ The URL fragment name (the anchor name).
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ An object that contains the parameters for a route.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ The name of the route that is used to return a virtual path.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route.
+ The parameter is null or empty.
+
+
+ Returns an anchor element (a element) that contains the virtual path of the specified action.
+ An anchor element (a element).
+ The HTML helper instance that this method extends.
+ The inner text of the anchor element.
+ An object that contains the parameters for a route.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Represents an HTML form element in an MVC view.
+
+
+ Initializes a new instance of the class using the specified HTTP response object.
+ The HTTP response object.
+ The parameter is null.
+
+
+ Initializes a new instance of the class using the specified view context.
+ An object that encapsulates the information that is required in order to render a view.
+ The parameter is null.
+
+
+ Releases all resources that are used by the current instance of the class.
+
+
+ Releases unmanaged and, optionally, managed resources used by the current instance of the class.
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+ Ends the form and disposes of all form resources.
+
+
+ Gets the HTML ID and name attributes of the string.
+
+
+ Gets the ID of the string.
+ The HTML ID attribute value for the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the ID.
+
+
+ Gets the ID of the string
+ The HTML ID attribute value for the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the ID.
+ The type of the model.
+ The type of the property.
+
+
+ Gets the ID of the string.
+ The HTML ID attribute value for the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+
+
+ Gets the full HTML field name for the object that is represented by the expression.
+ The full HTML field name for the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the name.
+
+
+ Gets the full HTML field name for the object that is represented by the expression.
+ The full HTML field name for the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the name.
+ The type of the model.
+ The type of the property.
+
+
+ Gets the full HTML field name for the object that is represented by the expression.
+ The full HTML field name for the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+
+
+ Represents the functionality to render a partial view as an HTML-encoded string.
+
+
+ Renders the specified partial view as an HTML-encoded string.
+ The partial view that is rendered as an HTML-encoded string.
+ The HTML helper instance that this method extends.
+ The name of the partial view to render.
+
+
+ Renders the specified partial view as an HTML-encoded string.
+ The partial view that is rendered as an HTML-encoded string.
+ The HTML helper instance that this method extends.
+ The name of the partial view to render.
+ The model for the partial view.
+
+
+ Renders the specified partial view as an HTML-encoded string.
+ The partial view that is rendered as an HTML-encoded string.
+ The HTML helper instance that this method extends.
+ The name of the partial view.
+ The model for the partial view.
+ The view data dictionary for the partial view.
+
+
+ Renders the specified partial view as an HTML-encoded string.
+ The partial view that is rendered as an HTML-encoded string.
+ The HTML helper instance that this method extends.
+ The name of the partial view to render.
+ The view data dictionary for the partial view.
+
+
+ Provides support for rendering a partial view.
+
+
+ Renders the specified partial view by using the specified HTML helper.
+ The HTML helper.
+ The name of the partial view
+
+
+ Renders the specified partial view, passing it a copy of the current object, but with the Model property set to the specified model.
+ The HTML helper.
+ The name of the partial view.
+ The model.
+
+
+ Renders the specified partial view, replacing the partial view's ViewData property with the specified object and setting the Model property of the view data to the specified model.
+ The HTML helper.
+ The name of the partial view.
+ The model for the partial view.
+ The view data for the partial view.
+
+
+ Renders the specified partial view, replacing its ViewData property with the specified object.
+ The HTML helper.
+ The name of the partial view.
+ The view data.
+
+
+ Represents support for making selections in a list.
+
+
+ Returns a single-selection select element using the specified HTML helper and the name of the form field.
+ An HTML select element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, and the specified list items.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, and the specified HTML attributes.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, and the specified HTML attributes.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, and an option label.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ The text for a default empty item. This parameter can be null.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, an option label, and the specified HTML attributes.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ The text for a default empty item. This parameter can be null.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, an option label, and the specified HTML attributes.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ The text for a default empty item. This parameter can be null.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns a single-selection select element using the specified HTML helper, the name of the form field, and an option label.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The text for a default empty item. This parameter can be null.
+ The parameter is null or empty.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and option label.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ The text for a default empty item. This parameter can be null.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ The text for a default empty item. This parameter can be null.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ The text for a default empty item. This parameter can be null.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+ The parameter is null.
+
+
+ Returns an HTML select element for each value in the enumeration that is represented by the specified expression.
+ An HTML select element for each value in the enumeration that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the values to display.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML select element for each value in the enumeration that is represented by the specified expression.
+ An HTML select element for each value in the enumeration that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the values to display.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML select element for each value in the enumeration that is represented by the specified expression.
+ An HTML select element for each value in the enumeration that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the values to display.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML select element for each value in the enumeration that is represented by the specified expression.
+ An HTML select element for each value in the enumeration that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the values to display.
+ The text for a default empty item. This parameter can be null.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML select element for each value in the enumeration that is represented by the specified expression.
+ An HTML select element for each value in the enumeration that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the values to display.
+ The text for a default empty item. This parameter can be null.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns an HTML select element for each value in the enumeration that is represented by the specified expression.
+ An HTML select element for each value in the enumeration that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the values to display.
+ The text for a default empty item. This parameter can be null.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the value.
+
+
+ Returns a multi-select select element using the specified HTML helper and the name of the form field.
+ An HTML select element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The parameter is null or empty.
+
+
+ Returns a multi-select select element using the specified HTML helper, the name of the form field, and the specified list items.
+ An HTML select element with an option subelement for each item in the list.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ The parameter is null or empty.
+
+
+ Returns a multi-select select element using the specified HTML helper, the name of the form field, the specified list items, and the specified HMTL attributes.
+ An HTML select element with an option subelement for each item in the list..
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns a multi-select select element using the specified HTML helper, the name of the form field, and the specified list items.
+ An HTML select element with an option subelement for each item in the list..
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The parameter is null or empty.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression and using the specified list items.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.
+ An HTML select element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to display.
+ A collection of objects that are used to populate the drop-down list.
+ An object that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Represents support for HTML textarea controls.
+
+
+ Returns the specified textarea element by using the specified HTML helper and the name of the form field.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+
+
+ Returns the specified textarea element by using the specified HTML helper, the name of the form field, and the specified HTML attributes.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns the specified textarea element by using the specified HTML helper and HTML attributes.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns the specified textarea element by using the specified HTML helper, the name of the form field, and the text content.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The text content.
+
+
+ Returns the specified textarea element by using the specified HTML helper, the name of the form field, the text content, and the specified HTML attributes.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The text content.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns the specified textarea element by using the specified HTML helper, the name of the form field, the text content, the number of rows and columns, and the specified HTML attributes.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The text content.
+ The number of rows.
+ The number of columns.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns the specified textarea element by using the specified HTML helper, the name of the form field, the text content, the number of rows and columns, and the specified HTML attributes.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The text content.
+ The number of rows.
+ The number of columns.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns the specified textarea element by using the specified HTML helper, the name of the form field, the text content, and the specified HTML attributes.
+ The textarea element.
+ The HTML helper instance that this method extends.
+ The name of the form field to return.
+ The text content.
+ An object that contains the HTML attributes to set for the element.
+
+
+ Returns an HTML textarea element for each property in the object that is represented by the specified expression.
+ An HTML textarea element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Returns an HTML textarea element for each property in the object that is represented by the specified expression using the specified HTML attributes.
+ An HTML textarea element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Returns an HTML textarea element for each property in the object that is represented by the specified expression using the specified HTML attributes and the number of rows and columns.
+ An HTML textarea element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The number of rows.
+ The number of columns.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Returns an HTML textarea element for each property in the object that is represented by the specified expression using the specified HTML attributes and the number of rows and columns.
+ An HTML textarea element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The number of rows.
+ The number of columns.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Returns an HTML textarea element for each property in the object that is represented by the specified expression using the specified HTML attributes.
+ An HTML textarea element for each property in the object that is represented by the expression.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ A dictionary that contains the HTML attributes to set for the element.
+ The type of the model.
+ The type of the property.
+ The parameter is null.
+
+
+ Provides support for validating the input from an HTML form.
+
+
+ Gets or sets the name of the resource file (class key) that contains localized string values.
+ The name of the resource file (class key).
+
+
+ Retrieves the validation metadata for the specified model and applies each rule to the data field.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+ The parameter is null.
+
+
+ Retrieves the validation metadata for the specified model and applies each rule to the data field.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The type of the property.
+
+
+ Displays a validation message if an error exists for the specified field in the object.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+
+
+ Displays a validation message if an error exists for the specified field in the object.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+ An object that contains the HTML attributes for the element.
+
+
+ Displays a validation message if an error exists for the specified field in the object.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+ An object that contains the HTML attributes for the element.
+
+
+ Displays a validation message if an error exists for the specified field in the object.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+ The message to display if the specified field contains an error.
+
+
+ Displays a validation message if an error exists for the specified field in the object.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+ The message to display if the specified field contains an error.
+ An object that contains the HTML attributes for the element.
+
+
+ Displays a validation message if an error exists for the specified field in the object.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ The name of the property or model object that is being validated.
+ The message to display if the specified field contains an error.
+ An object that contains the HTML attributes for the element.
+
+
+ Returns the HTML markup for a validation-error message for each data field that is represented by the specified expression.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The type of the model.
+ The type of the property.
+
+
+ Returns the HTML markup for a validation-error message for each data field that is represented by the specified expression, using the specified message.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The message to display if the specified field contains an error.
+ The type of the model.
+ The type of the property.
+
+
+ Returns the HTML markup for a validation-error message for each data field that is represented by the specified expression, using the specified message and HTML attributes.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The message to display if the specified field contains an error.
+ An object that contains the HTML attributes for the element.
+ The type of the model.
+ The type of the property.
+
+
+ Returns the HTML markup for a validation-error message for each data field that is represented by the specified expression, using the specified message and HTML attributes.
+ If the property or object is valid, an empty string; otherwise, a span element that contains an error message.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to render.
+ The message to display if the specified field contains an error.
+ An object that contains the HTML attributes for the element.
+ The type of the model.
+ The type of the property.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object and optionally displays only model-level errors.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+ true to have the summary display model-level errors only, or false to have the summary display all errors.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object and optionally displays only model-level errors.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+ true to have the summary display model-level errors only, or false to have the summary display all errors.
+ The message to display with the validation summary.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object and optionally displays only model-level errors.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+ true to have the summary display model-level errors only, or false to have the summary display all errors.
+ The message to display with the validation summary.
+ A dictionary that contains the HTML attributes for the element.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object and optionally displays only model-level errors.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+ true to have the summary display model-level errors only, or false to have the summary display all errors.
+ The message to display with the validation summary.
+ An object that contains the HTML attributes for the element.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HMTL helper instance that this method extends.
+ The message to display if the specified field contains an error.
+
+
+ Returns an unordered list (ul element) of validation messages that are in the object.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+ The message to display if the specified field contains an error.
+ A dictionary that contains the HTML attributes for the element.
+
+
+ Returns an unordered list (ul element) of validation messages in the object.
+ A string that contains an unordered list (ul element) of validation messages.
+ The HTML helper instance that this method extends.
+ The message to display if the specified field contains an error.
+ An object that contains the HTML attributes for the element.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+ The HTML markup for the value.
+ The HTML helper instance that this method extends.
+ The name of the model.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+ The HTML markup for the value.
+ The HTML helper instance that this method extends.
+ The name of the model.
+ The format string.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+ The HTML markup for the value.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to expose.
+ The model.
+ The property.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+ The HTML markup for the value.
+ The HTML helper instance that this method extends.
+ An expression that identifies the object that contains the properties to expose.
+ The format string.
+ The model.
+ The property.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+ The HTML markup for the value.
+ The HTML helper instance that this method extends.
+
+
+ Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.
+ The HTML markup for the value.
+ The HTML helper instance that this method extends.
+ The format string.
+
+
+ Compiles ASP.NET Razor views into classes.
+
+
+ Initializes a new instance of the class.
+
+
+ The inherits directive.
+
+
+ The model directive.
+
+
+ Extends the VBCodeParser class by adding support for the @model keyword.
+
+
+ Initializes a new instance of the class.
+
+
+ Sets a value that indicates whether the current code block and model should be inherited.
+ true if the code block and model is inherited; otherwise, false.
+
+
+ The Model Type Directive.
+ Returns void.
+
+
+ Configures the ASP.NET Razor parser and code generator for a specified file.
+
+
+ Initializes a new instance of the class.
+ The virtual path of the ASP.NET Razor file.
+ The physical path of the ASP.NET Razor file.
+
+
+ Returns the ASP.NET MVC language-specific Razor code generator.
+ The ASP.NET MVC language-specific Razor code generator.
+ The C# or Visual Basic code generator.
+
+
+ Returns the ASP.NET MVC language-specific Razor code parser using the specified language parser.
+ The ASP.NET MVC language-specific Razor code parser.
+ The C# or Visual Basic code parser.
+
+
+ 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.
+
+
+
+ Gets the mutable dictionary that maps constraint keys to a particular constraint type.
+
+
+
+ Represents a context that supports creating a direct route.
+
+
+ Initializes a new instance of the class.
+ The route prefix, if any, defined by the area.
+ 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.
+
+
+ Gets the route prefix, if any, defined by the area.
+ The route prefix, if any, defined by the area.
+
+
+ Gets the route prefix, if any, defined by the controller.
+ The route prefix, if any, defined by the controller.
+
+
+ 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 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.
+
+
+ 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.
+ The route name, or null if no name supplied.
+
+
+ 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 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.
+
+
+ Provides information for building a System.Web.Routing.Route.
+
+
+ Gets the route template describing the URI pattern to match against.
+ The route template describing the URI pattern to match against.
+
+
+ Gets the name of the route to generate.
+ The name of the route to generate.
+
+
+ Defines a route prefix.
+
+
+ Gets the route prefix.
+ The route prefix.
+
+
+ Builds instances based on route information.
+
+
+ Initializes a new instance of the class using the default inline constraint resolver.
+
+
+ Initializes a new instance of the class.
+ The to use for resolving inline constraints.
+
+
+ Builds an for a particular action.
+ The generated .
+ The tokenized route template for the route.
+ The HTTP methods supported by the route. A null value specify that all possible methods are supported.
+ The name of the associated controller.
+ The name of the associated action.
+ The method that the route attribute has been applied on.
+
+
+ Builds an for a particular action.
+ The generated route.
+ The tokenized route template for the route.
+ The controller the route attribute has been applied on.
+
+
+ Builds an .
+ The generated .
+ The route defaults.
+ The route constraints.
+ The detokenized route template.
+ The method that the route attribute has been applied on.
+
+
+ Gets the resolver for resolving inline constraints.
+ The resolver for resolving inline constraints.
+
+
+ Represents a named route.
+
+
+ Initializes a new instance of the class.
+ The route name.
+ The route.
+
+
+ Gets the route name.
+ 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.
+ The route constraints, if any; otherwise null.
+
+
+ Creates a direct route entry.
+ The direct route entry.
+ The context to use to create the route.
+
+
+ Gets the route data tokens.
+ The route data tokens, if any; otherwise null.
+
+
+ Gets the route defaults.
+ The route defaults, if any; otherwise null.
+
+
+ Gets or sets the route name.
+ The route name, if any; otherwise null.
+
+
+ Gets or sets the route order.
+ The route order.
+
+
+ Gets the route template.
+ The route template.
+
+
+ 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.
+
+
+
+
+ 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 HTTP context.
+ 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 HTTP context.
+ The route to compare.
+ The name of the parameter.
+ A list of parameter values.
+ The route 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 HTTP context.
+ 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.
+
+
+ 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 HTTP context.
+ 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 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 HTTP context.
+ 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.
+
+
+
+
+ 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.
+
+
+ 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 HTTP context.
+ 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 with a maximum length.
+
+
+
+
+ Gets the maximum length of the route parameter.
+
+
+ Constrains a route parameter to be an integer with a maximum value.
+
+
+ Initializes a new instance of the class.
+ The maximum value.
+
+
+ Determines whether this instance equals a specified route.
+ true if this instance equals a specified route; otherwise, false.
+ The HTTP context.
+ The route to compare.
+ The name of parameter.
+ A list of parameter values.
+ The route direction.
+
+
+ Gets the maximum value of the route parameter.
+ 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 HTTP context.
+ The route to compare.
+ The name of the compare.
+ 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.
+
+
+ Determines whether this instance equals a specified route.
+ true if this instance equals a specified route; otherwise, false.
+ The HTTP context.
+ 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.
+
+
+
+ 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 HTTP context.
+ 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 with the specified pattern.
+ The pattern to match.
+
+
+ Determines whether this instance equals a specified route.
+ true if this instance equals a specified route; otherwise, false.
+ The HTTP context.
+ 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.
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.Razor.3.1.1/.signature.p7s b/packages/Microsoft.AspNet.Razor.3.1.1/.signature.p7s
new file mode 100644
index 0000000..fb7a471
Binary files /dev/null and b/packages/Microsoft.AspNet.Razor.3.1.1/.signature.p7s differ
diff --git a/packages/Microsoft.AspNet.Razor.3.1.1/Microsoft.AspNet.Razor.3.1.1.nupkg b/packages/Microsoft.AspNet.Razor.3.1.1/Microsoft.AspNet.Razor.3.1.1.nupkg
new file mode 100644
index 0000000..741c5a0
Binary files /dev/null and b/packages/Microsoft.AspNet.Razor.3.1.1/Microsoft.AspNet.Razor.3.1.1.nupkg differ
diff --git a/packages/Microsoft.AspNet.Razor.3.1.1/lib/net45/System.Web.Razor.dll b/packages/Microsoft.AspNet.Razor.3.1.1/lib/net45/System.Web.Razor.dll
new file mode 100644
index 0000000..45b7e9f
Binary files /dev/null and b/packages/Microsoft.AspNet.Razor.3.1.1/lib/net45/System.Web.Razor.dll differ
diff --git a/packages/Microsoft.AspNet.Razor.3.1.1/lib/net45/System.Web.Razor.xml b/packages/Microsoft.AspNet.Razor.3.1.1/lib/net45/System.Web.Razor.xml
new file mode 100644
index 0000000..92304e8
--- /dev/null
+++ b/packages/Microsoft.AspNet.Razor.3.1.1/lib/net45/System.Web.Razor.xml
@@ -0,0 +1,5738 @@
+
+
+
+ System.Web.Razor
+
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor code language that is based on C# syntax.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the type of the code provider.
+ The type of the code provider.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new Razor code generator based on C# code language.
+ The newly created Razor code generator based on C# code language.
+ The class name for the generated code.
+ The name of the root namespace for the generated code.
+ The name of the source code file.
+ The Razor engine host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new code parser for C# code language.
+ The newly created code parser for C# code language.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the name of the C# code language.
+ The name of the C# code language. Value is ‘csharp’.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents results from code generation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ true if the code generation is a success; otherwise, false.
+ The document.
+ The parser errors.
+ The generated code.
+ The dictionary of design-time generated code mappings.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The document.
+ The parser errors.
+ The generated code.
+ The dictionary of design-time generated code mappings.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The parser results.
+ The generated code.
+ The dictionary of design-time generated code mappings.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the dictionary of design-time generated code mappings.
+ The dictionary of design-time generated code mappings.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the generated code.
+ The generated code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the results of parsing a Razor document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ true if parsing was successful; otherwise, false.
+ The root node in the document’s syntax tree.
+ The list of errors which occurred during parsing.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The root node in the document’s syntax tree.
+ The list of errors which occurred during parsing.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the root node in the document’s syntax tree.
+ The root node in the document’s syntax tree.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the list of errors which occurred during parsing.
+ The list of errors which occurred during parsing.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether parsing was successful.
+ true if parsing was successful; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ Represents the base for all Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ Initializes a new instance of the class.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ Gets the type of the CodeDOM provider.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The type of the CodeDOM provider.
+
+
+ Creates the code generator for the Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The code generator for the Razor code language.
+ The class name.
+ The name of the root namespace.
+ The source file name.
+ The Razor engine host.
+
+
+ Creates the code parser for the Razor code language.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The code parser for the Razor code language.
+
+
+ Gets the language of the Razor code using the specified file extension.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The language of the Razor code.
+ The file extension.
+
+
+ Gets the language name of the current Razor code, that is “csharp” or “vb”.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The language name of the current Razor code.
+
+
+ Gets the list of language supported by the Razor code.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The list of language supported by the Razor code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents an attribute for the Razor directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The name of the attribute.
+ The value of the attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether this instance is equal to a specified object.
+ true if the object is equal to the this instance; otherwise, false.
+ The object to compare with this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of the attribute.
+ The name of the attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the unique type ID of the attribute.
+ The unique type ID of the attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the attribute.
+ The value of the attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parser used by editors to avoid reparsing the entire document on each text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Constructs the editor parser.
+ The which defines the environment in which the generated code will live.
+ The physical path to use in line pragmas.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines if a change will cause a structural change to the document and if not, applies it to the existing tree. If a structural change would occur, automatically starts a reparse.
+ A value indicating the result of the incremental parse.
+ The change to apply to the parse tree.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current parse tree.
+ The current parse tree.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases all resources used by the current instance of the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the class and optionally releases the managed resources.
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Event fired when a full reparse of the document completes.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the filename of the document to parse.
+ The filename of the document to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the auto complete string.
+ The auto complete string.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host for the parse.
+ The host for the parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the last result of the parse was provisionally accepted for next partial parse.
+ true if the last result of the parse was provisionally accepted for next partial parse; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the generated code for the razor engine host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The specified code language.
+
+
+ Initializes a new instance of the class.
+ The specified code language.
+ The markup parser factory.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the languages supported by the code generator.
+ The languages supported that by the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a markup parser using the specified language parser for the .
+ A markup parser to create using the specified language parser for the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the methods as language-specific Razor code generator.
+ The methods as language-specific Razor code generator.
+ The C# or Visual Basic code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the methods as language-specific Razor code parser using the specified language parser.
+ The methods as language-specific Razor code parser using the specified language parser.
+ The C# or Visual Basic code parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the method to decorate markup parser using the specified language parser.
+ The method to decorate markup parser using the specified language parser.
+ The C# or Visual Basic code parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default base class for the host.
+ The default base class for the host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default class name for the host.
+ The default class name for the host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the default namespace for the host.
+ The default namespace for the host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the mode designs a time for the host.
+ true if the mode designs a time for the host; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host that enables the instrumentation.
+ The host that enables the instrumentation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the generated class context for the host.
+ The generated class context for the host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the instrumented source file path for the host.
+ The instrumented source file path for the host.
+
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the namespace imports for the host.
+ The namespace imports for the host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns this method to post all the processed generated code for the host.
+ The code compile unit.
+ The generated namespace.
+ The generated class.
+ The execute method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns this method to post all the processed generated code for the host.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the static helpers for the host.
+ The static helpers for the host.
+
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents an entry-point to the Razor Template Engine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a code generator.
+ The created .
+ The name of the generated class.
+ The namespace in which the generated class will reside.
+ The file name to use in line pragmas.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a .
+ The created .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the default class name of the template.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the default namespace for the template.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+ The name of the generated class, overriding whatever is specified in the host.
+ The namespace in which the generated class will reside.
+ The file name to use in line pragmas.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+ The name of the generated class, overriding whatever is specified in the host.
+ The namespace in which the generated class will reside.
+ The file name to use in line pragmas.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+ The name of the generated class, overriding whatever is specified in the host.
+ The namespace in which the generated class will reside.
+ The file name to use in line pragmas.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer, generates code for it, and returns the constructed CodeDOM tree.
+ The resulting parse tree AND generated Code DOM tree.
+ The input text to parse.
+ The name of the generated class, overriding whatever is specified in the host.
+ The namespace in which the generated class will reside.
+ The file name to use in line pragmas.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a code core.
+ The results of the generated core.
+ The input text to parse.
+ The name of the generated class, overriding whatever is specified in the host.
+ The namespace in which the generated class will reside.
+ The file name to use in line pragmas.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the which defines the environment in which the generated template code will live.
+ The which defines the environment in which the generated template code will live.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.
+ The resulting parse tree.
+ The input text to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.
+ The resulting parse tree.
+ The input text to parse.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.
+ The resulting parse tree.
+ The input text to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template specified by the TextBuffer and returns its result.
+ The resulting parse tree.
+ The input text to parse.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the template core.
+ The resulting parse tree.
+ The input text to parse.
+ A token used to cancel the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the state of the machine.
+ The generic type Return.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the current state of the machine.
+ The current state of the machine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting state of the machine.
+ The starting state of the machine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Stays into the machine during the transition.
+ Transition of the state machine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Stays into the machine during the transition with the specified output.
+ The output of the transition.
+ The output.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Disables the machine upon transition.
+ The machine to stop.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state.
+ The new transition of the state.
+ The new state.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state with the specified output.
+ The new transition of the state with the specified output.
+ The output.
+ The new state.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Describes the turning process of the state.
+ The turning process of the state.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the state result.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The next output.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The output.
+ The next state.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the state has output.
+ true if the state has output; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the next state in the machine.
+ The next state in the machine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the output.
+ The representing the output.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a language generator and provider of the VB razor code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of CodeDomProvider.
+ The type of CodeDomProvider.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates the code language generator.
+ The code language generator.
+ The name of the class.
+ The root namespace name.
+ The source File name.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a code parser in a .
+ A code parser in a .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language name.
+ The language name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the editing result of the Editor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The partial parse result.
+ The edited span builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the edited span of the .
+ The edited span of the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the partial parse result.
+ The partial parse result.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides edit handler for implicit expression.
+
+
+ Initializes a new instance of the class.
+ The tokenizer.
+ The keywords.
+ true to accept trailing dot; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the expression accepts trailing dot.
+ true if the expression accepts trailing dot; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parse that can accept change.
+ The partial parse result.
+ The target.
+ The normalized change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the specified object is equal to the current object.
+ true if the specified object is equal to the current objet; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the keywords associated with the expression.
+ The keywords associated with the expression.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.
+ A string representation of this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the handler editor for this webpages.
+
+
+ Initializes a new instance of the class.
+ The tokenizer symbols.
+
+
+ Initializes a new instance of the class.
+ The tokenizer symbols.
+ The accepted characters.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides methods for handling the span edits.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The method used to parse string into tokens.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The method used to parse string into tokens.
+ One of the values of the enumeration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that specifies the accepted characters.
+ One of the values of the enumeration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Applies the text change to the span.
+ The result of the apply operation.
+ The span to apply changes to.
+ The change to apply.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Applies the text change to the span.
+ The result of the apply operation.
+ The span to apply changes to.
+ The change to apply.
+ true to accept partial result; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the span can accept the specified change.
+ true if the span can accept the specified change; otherwise, false.
+ The span to check.
+ The change to apply.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new default span edit handler.
+ A newly created default span edit handler.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new default span edit handler.
+ A newly created default span edit handler.
+ The method used to parse string into tokens.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the editor hints.
+ The editor hints.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether this instance is equal to a specified object.
+ true if the object is equal to the this instance; otherwise, false.
+ The object to compare with this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the old text from the span content.
+ The old text from the span content.
+ The span to get old text from.
+ The text change which contains the location of the old text.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end of first line of the span content.
+ true if the specified change is at the end of first line of the span content; otherwise, false.
+ The span to check.
+ The change to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end of the span.
+ true if the specified change is at the end of the span; otherwise, false.
+ The span to check.
+ The change to chek.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for deletion.
+ true if the specified change is at the end the span content and for deletion; otherwise, false.
+ The span to check.
+ The change to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for insertion.
+ true if the specified change is at the end the span content and for insertion; otherwise, false.
+ The span to check.
+ The change to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified change is at the end the span content and for replacement.
+ true if the specified change is at the end the span content and for replacement; otherwise, false.
+ The span to check.
+ The change to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the span owns the specified change.
+ true if the span owns the specified change; otherwise, false.
+ The span to check.
+ The change to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the method used to parse string into tokens.
+ The method used to parse string into tokens.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of the span edit handler.
+ The string representation of the span edit handler.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Updates the span using the normalized change.
+ The new span builder for the specified target.
+ The span to update.
+ The normalized change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the added import code generator for the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The string namespace.
+ The length of the keyword namespace.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether two object instances are equal.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code with the specified parameters using the added import code generator.
+ The target span.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string namespace of the generator to add import code generator.
+ The string namespace of the generator to add import code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of keyword namespace for the code generator.
+ The length of keyword namespace for the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.
+ A string that represents the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the attributes of the block code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The name.
+ The prefix string.
+ The suffix string.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block using the specified parameters.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block using the specified parameters.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this code generator.
+ The hash code for this code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string name of the .
+ The string name of the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the prefix of the code generator.
+ The prefix of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the suffix for the code generator.
+ The suffix for the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.
+ A string that represents the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represent the block code generator for this razor syntax.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end of the block code generator for this razor syntax.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start of the block code generator for this razor syntax.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a hash code for the block code generator.
+ A hash code for the block code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a null value for the block code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the completion of event arguments for the code generation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The virtual path string.
+ The physical path string.
+ The generated code compile unit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the generated code to complete the event argument.
+ The generated code to complete the event argument.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the physical path for the code generation.
+ The physical path for the code generation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the code generation.
+ The virtual path of the code generation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents the context of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new generated code mapping to the collection.
+ The collection index of the newly added code mapping.
+ The source location of the generated code mapping.
+ The code start of the generated code mapping.
+ The length of the generated code mapping.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a code statement for a context call on the specified method.
+ The content span.
+ The name of the method to invoke a context call.
+ true to specify that the method parameter is literal; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a code statement that inserts the Razor design time helpers method in the specified code statement.
+ The code statement that receives the code insertion.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified code statement to the body of the target method.
+ The code statement to add the target method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified code statement to the body of the target method.
+ The code statement to add the target method.
+ The line pragma.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the specified fragment to the current buffered statement.
+ The fragment to add.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the specified fragment to the current buffered statement.
+ The fragment to add.
+ The source span for the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Appends the content of the span to the current buffered statement.
+ The source span whose content is to be added.
+
+
+ Assigns a new statement collector and returns a disposable action that restores the old statement collector.
+ A disposable action that restores the old statement collector.
+ The new statement collector.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the dictionary collection of generated code mapping.
+ The dictionary collection of generated code mapping.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code compile unit that will hold the program graph.
+ The code compile unit that will hold the program graph.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a new instance of the class.
+ The newly created instance of the code generator context.
+ The Razor engine host.
+ The class name for the generated class type declaration.
+ The name for the generated namespace declaration.
+ The source file.
+ true to enable the generation of line pragmas; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current buffered statement.
+ The current buffered statement.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the expression helper variable to the generated class if not yet added,
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Flushes the current buffered statement.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated class type declaration.
+ The generated class type declaration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the specified source.
+ The line pragma for the specified source.
+ The source span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.
+ The line pragma for the specified source.
+ The source span.
+ The start index of code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.
+ The line pragma for the specified source.
+ The source span.
+ The start index of code.
+ The length of code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the line pragma for the source.
+ The line pragma for the specified source.
+ The source location.
+ The start index of code.
+ The length of code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the Razor engine host.
+ The Razor engine host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Marks the end of generated code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Marks the start of generated code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated namespace declaration.
+ The generated namespace declaration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the source file.
+ The source file.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the generated member method.
+ The generated member method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of text writer.
+ The name of text writer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor code generator for C# language.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The class name for the generated class type declaration.
+ The name for the generated namespace declaration.
+ The source file.
+ The Razor engine host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes the context for this code generator.
+ The context for this code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the dynamic attributes of the block code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instances of the class.
+ The prefix.
+ The offset values.
+ The line values.
+ The col.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instances of the class.
+ The string prefix.
+ The value start.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block using the specified parameters.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block using the specified parameters.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the namespace prefix of the code generator.
+ The namespace prefix of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.
+ A string that represents the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the value start for the dynamic attribute block code generator.
+ The value start for the dynamic attribute block code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a code generator for expression.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether this instance and a specified object are equal.
+ true if and this instance are the same type and represent the same value; otherwise, false.
+ The object to compare with the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the expression.
+ The source span whose content represents an expression.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end code for the block.
+ The target block for the end code generation.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start code for the block.
+ The target block the start code generation.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the string representation of this instance.
+ The string representation of this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a generated class context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The execute method name.
+ The write method name.
+ Write literal method name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ Execute method name.
+ Write method name.
+ Write literal method name.
+ Write to method name.
+ Write literal to method name.
+ Template type name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ Execute method name.
+ Write method name.
+ Write literal method name.
+ Write to method name.
+ Write literal to method name.
+ Template type name.
+ Define section method name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ Execute method name.
+ Write method name.
+ Write literal method name.
+ Write to method name.
+ Write literal to method name.
+ Template type name.
+ Define section method name.
+ Begin context method name.
+ End context method name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the context allows sections.
+ true if the context allows sections; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the context allows templates.
+ true if the context allows templates; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method before the generated context.
+ The name of the method before the generated context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default generated context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the execute method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the layout property.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the write attribute method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default name of the write to attribute to method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Specifies the default name of the write literal method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Specifies the default name of the write method.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that defines the section of the context.
+ The name of the method that defines the section of the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method after the generated context.
+ The name of the method after the generated context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that will be invoked on the context.
+ The name of the method that will be invoked on the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the property name for the layout.
+ The property name for the layout.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two object are equal.
+ true if the two object are equal; otherwise, false.
+ The first object to compare.
+ The second object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two object are not equal.
+ true if the two object are not equal; otherwise, false.
+ The first object to compare.
+ The second object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that resolves a Url for the context.
+ The name of the method that resolves a Url for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the generated class supports instrumentation.
+ true if the generated class supports instrumentation; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the type name for the template.
+ The type name for the template.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that writes an attribute.
+ The name of the method that writes an attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method where to write an attribute.
+ The name of the method where to write an attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method where to write literal for the context.
+ The name of the method where to write literal for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method where to write literal for the context.
+ The name of the method where to write literal for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that will write on the context.
+ The name of the method that will write on the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the method that will write on the context.
+ The name of the method that will write on the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the generated code mapping objects.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The starting line.
+ The starting column.
+ The start generated column.
+ The code length.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The start offset.
+ The starting line.
+ The starting column.
+ The start generated column.
+ The code length.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of the generated map codes.
+ The length of the generated map codes.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current generated code mapping object.
+ true if the specified object is equal to the current generated code mapping object; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for the generated code mapping object.
+ The hash code for the generated code mapping object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two specified generated code mapping objects have the same value.
+ true if the two specified generated code mapping objects have the same value; otherwise, false.
+ The left generated code mapping objects.
+ The right generated code mapping objects.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two specified generated code mapping objects have different values.
+ true the two specified generated code mapping objects have different values; otherwise, false.
+ The right generated code mapping objects.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the starting column of the generated code maps.
+ The starting column of the generated code maps.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the starting column of a generated code maps in the generated source file.
+ The starting column of a generated code maps in the generated source file.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting line of the generated code maps.
+ The starting line of the generated code maps.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the starting offset of the generated code maps.
+ The starting offset of the generated code maps.
+
+
+ Returns a string that represents the current object.
+ A string that represents the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a helper code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The signature.
+ true to complete the header; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the footer for this code.
+ The footer for this code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block after the code.
+ The block to generate.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block before the code.
+ The block to generate.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the hash code for the current instance.
+ The hash code for the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the header for this code is complete.
+ true if the header for this code is complete; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the signature for this code.
+ The signature for this code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the current instance.
+ A string representation of the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a hybrid code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the data model from switches identified by parameters.
+ The target object.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates an end block code.
+ The target object.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start block code.
+ The target object.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the for the webpages.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the end block code for the razor.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start block code for the razor.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a phase of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the data model with the specified target and context.
+ The target object.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for literal attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. . Initializes a new instance of the class.
+ The prefix of the literal attribute.
+ The value of the literal attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. . Initializes a new instance of the class.
+ The prefix of the literal attribute.
+ The value generator for the literal attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the literal attribute.
+ The source span whose content represents the literal attribute.
+ The context of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the hash code for the current instance.
+ The hash code for the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the prefix of the literal attribute.
+ The prefix of the literal attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of this instance.
+ The string representation of this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the literal attribute.
+ The value of the literal attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value generator for the literal attribute.
+ The value generator for the literal attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for markup.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the markup.
+ The source span whose content represents the markup.
+ The context of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.
+ The string representation for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a Razor code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The class name.
+ The root namespace name.
+ The source file name.
+ The host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the class name for this code.
+ The class name for this code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the context of this code generator.
+ The context of this code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the code generator is in design-time mode.
+ true if the code generator is in design-time mode; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value indicating whether the generator should generate line pragmas in the Razor code.
+ true if the generator should generate line pragmas in the Razor code; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the razor engine host.
+ The razor engine host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes the current instance.
+ The context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Raises the Complete event.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the root namespace.
+ The name of the root namespace.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the source file.
+ The name of the source file.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the end block.
+ The block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the span.
+ The span to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the start block.
+ The block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the razor comment code generator for the webpages.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the start block code with the specified parameters.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for Razor directive attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The name of the directive attribute.
+ The value of the directive attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the directive attribute.
+ The source span whose content represents the directive attribute to generate.
+ The context of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the name of the directive attribute.
+ The name of the directive attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.
+ The string representation for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the value of the directive attribute.
+ The value of the directive attribute.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the resolve Url code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether this instance and a specified object are equal.
+ true if and this instance are the same type and represent the same value; otherwise, false.
+ The object to compare with the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the Url.
+ The target object.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the fully qualified type name of this instance.
+ The fully qualified type name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a section code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The name of the section code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block after the section code.
+ The target to generate.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a block before the section code.
+ The target to generate.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the section.
+ The name of the section.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.
+ A string representation of this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for set base type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The set base type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the set base type.
+ The set base type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for this set base type.
+ The source span that contains the set base type to generate code.
+ The context of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Resolves the given set base type.
+ The resolved set base type.
+ The context of the code generator.
+ The set base type to resolve.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.
+ The string representation for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a code generator that sets layout for the web Razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The layout path.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a layout code.
+ The target where to generate the code.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves a hash code for this current instance.
+ A hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the path of the layout code.
+ The path of the layout code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this current instance.
+ A string representation of this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the conversion of the SetVBOptionCodeGenerator of the value.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The option name.
+ true if the object has a value; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the explicitly to the on and off value.
+ The explicitly converts to the on and off value.
+ true if the converts to on and off value; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the explicit code Dom option name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code for the specified parameters.
+ The target.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the option name for the code generator.
+ The option name for the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Strictly converts the to the on and off value.
+ The strictly converts to the on and off value.
+ true if the strictly converts to the on and off value; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the strict code Dom option name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a String that represents the current Object.
+ A String that represents the current Object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the has a value.
+ true if the has a value; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the span code generator for the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a code for the specified target and context parameters.
+ The target span.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a hash code for the span code generator.
+ A hash code for the span code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a null value for the span code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a code generator for the statement.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Generates the code for the statement.
+ The span source whose content contains the statement to generate.
+ The context of the code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation for this instance.
+ The string representation for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the template block code generator of the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to end the block of the template block code generator.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code to start the block for the template block code generator.
+ The target block.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a type member code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates code with a given target and context.
+ The target where to generate the code.
+ The code generator context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of this code.
+ A string representation of this code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the razor code generator for VB.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The name of the class.
+ The root namespace.
+ The file name of the asset source.
+ The host.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a visitor that executes a callback upon the completion of a visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The delegate for the span visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The delegate for the span visit.
+ The delegate for the error visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The delegate for the span visit.
+ The delegate for the error visit.
+ The delegate for the start block visit.
+ The delegate for the end block visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The delegate for the span visit.
+ The delegate for the error visit.
+ The delegate for the start block visit.
+ The delegate for the end block visit.
+ The delegate to execute for the complete event.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the synchronization context for this callback visitor.
+ The synchronization context for this callback visitor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the end block.
+ The end block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the error.
+ The Razor error to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the span.
+ The span to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Executes the visitor callback to visit the start block.
+ The start block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a C sharp code parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts the ‘IF’ keyword.
+ true if the parser accepts the ‘IF’ keyword; otherwise, false.
+ The keyword to accept.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Asserts a directive code.
+ The directive code to assert.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code contains ‘AT’ keyword.
+ true if the code contains ‘AT’ keyword; otherwise, false.
+ The keyword.
+
+
+ Indicates the base type directive.
+ The no type name error.
+ The create code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the functions directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the code that handles embedded transition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a helper directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates which class the application will derive the view from, and can therefore ensure proper type checking.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Inherits a directive core.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is at embedded transition.
+ true if the code is at embedded transition; otherwise, false.
+ true to allow templates and comments; otherwise, false.
+ true to allow transitions; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the code is nested.
+ true if the code is nested; otherwise, false.
+
+
+ Indicates whether the lines and comments is spacing token.
+ The function that indicates the spacing token.
+ true to include new lines; otherwise, false.
+ true to include comments; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the C sharp language keywords.
+ The C sharp language keywords.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the specific language for parsing.
+ The specific language for parsing.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the layout directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Maps the given directives.
+ The handler.
+ The directives.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser used for the code.
+ The other parser used for the code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Spans the output of the parsing before the comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parsing.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the reserved directive.
+ Determines whether the directive is a top level.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a section directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a session state directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the session state directive core.
+
+
+ Indicates the directive for session state type.
+ The no value error.
+ The create code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a directive handler.
+ true if successful; otherwise, false.
+ The directive.
+ The handler.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the value of the session state is valid.
+ true if the value of the session state is valid; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the block for this CSharpCode parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The string name.
+ The start of the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The CSharp symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the string name for the block.
+ The string name for the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the source location to start the block.
+ The source location to start the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the different language characteristics in a CSharp language.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a marker symbol in the code.
+ A marker symbol in the code.
+ The source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a symbol in the code.
+ A symbol in the code.
+ The source location.
+ The content value.
+ The html symbol type.
+ List of errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a language tokenizer.
+ A language tokenizer.
+ The source of the text document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flips the bracket symbol in the code.
+ The bracket symbol in the code.
+ The symbol bracket.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the keyword in the code.
+ The keyword in the code.
+ The keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the in the code.
+ The in the code.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol in the code.
+ A sample symbol in the code.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol in the code.
+ A sample symbol in the code.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the instance for the class.
+ The instance for the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the different language characteristics in an html.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a marker symbol in the Html.
+ A marker symbol in the Html.
+ The source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a symbol in the Html.
+ A symbol in the Html.
+ The source location.
+ The content value.
+ The html symbol type.
+ List of errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates an html tokenizer.
+ An html tokenizer.
+ The source of the text document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flips the bracket symbol in the html.
+ The bracket symbol in the html.
+ The symbol bracket.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the in the html.
+ The in the html.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol in the html.
+ A sample symbol in the html.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the instance for the class.
+ The instance for the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a parser specifically for parsing HTML markup.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Builds the span for the given content using the specified span builder.
+ The span builder used to build the span.
+ The start location.
+ The span content.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the function delegate used to determine the token used for HTML spacing.
+ The function delegate used to determine the token used for HTML spacing.
+ true to indicate that new lines are considered as spacing token; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the instance that defines the characteristics of HTML language.
+ The instance that defines the characteristics of HTML language.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the other parser for parsing HTML markup.
+ The other parser for parsing HTML markup.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Builds the span before the Razor comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Parses the next HTML block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Parses the HTML document.
+
+
+ Parses a section with markups given by the nesting sequences.
+ A tuple that specifies the markup nesting sequences.
+ true to indicate case-sensitive parsing; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified condition is meet.
+ A function delegate that defines the condition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Skips the parse until the specified HTML symbol type is encountered.
+ The HTML symbol type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the HTML tags that are considered as void.
+ The HTML tags that are considered as void.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides methods that define the behavior of a Razor code language.
+ The type of the code tokenizer for the Razor language.
+ The type for the language symbol.
+ The enumeration type for the language symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a code language symbol with the specified source location as the start marker.
+ The symbol for the code language.
+ The source location as the start marker.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a code language symbol with the specified source location with the specified source location as the start marker.
+ The symbol for the code language.
+ The source location as the start marker.
+ The content.
+ The enumeration type for the language symbol.
+ The collection of error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates a Razor code language tokenizer for the specified source document.
+ A Razor code language tokenizer for the specified source document.
+ The source document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the opposite bracket symbol for the specified bracket symbol.
+ The opposite bracket symbol for the specified bracket symbol.
+ The bracket symbol to flip.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the specific language symbol type for the given symbol type.
+ The specific language symbol type for the given symbol type.
+ The symbol type to get.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the actual symbol for the given language symbol type.
+ The actual symbol for the given language symbol type.
+ The language symbol type to get.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a comment body type.
+ true if the symbol is a comment body type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a comment star type.
+ true if the symbol is a comment star type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a comment start type.
+ true if the symbol is a comment start type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is an identifier type.
+ true if the symbol is an identifier type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a keyword type.
+ true if the symbol is a keyword type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol type is a known symbol type.
+ true if the symbol type is a known symbol type; otherwise, false.
+ The symbol whose type is to be checked.
+ The known type of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a new line type.
+ true if the symbol is a new line type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a transition type.
+ true if the symbol is a transition type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is an unknown type.
+ true if the symbol is an unknown type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is a whitespace type.
+ true if the symbol is a whitespace type; otherwise, false.
+ The symbol to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the symbol is an unknown type.
+ true if the symbol is an unknown type; otherwise, false.
+ The known type of the symbol.
+
+
+ Splits the content of the code language symbol at the specified index.
+ A tuple of code language symbol.
+ The symbol whose content is to be splitted.
+ The index where the split occurs.
+ The enumeration type for the language symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Splits the specified string into tokens.
+ The collection of token.
+ The string to tokenize.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Splits the specified string into tokens.
+ The collection of token.
+ The source location as the start marker for the tokenizer.
+ The string to tokenize.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the parser base class for the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a span for the parser base.
+ The span builder.
+ The beginning of the source location.
+ The content.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the .
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the parser is a markup parser.
+ true if the parser is a markup parser; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser .
+ The other parser .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates documentation for the parse.
+
+
+ Parses the section in ordered list of the elements.
+ The pair of nesting sequences.
+ true if the case is sensitive; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a parser whose context can be switched to either a code or a markup.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The source document.
+ The code parser for the context.
+ The markup parser for the context.
+ The active parser for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the active parser for the context.
+ The active parser for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds the specified span at the end of the block builder stack.
+ The span to add.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code parser for the context.
+ The code parser for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Parses the last span and returns the parse results that contain the newly built block.
+ The parse results that contain the newly built block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current block builder.
+ The current block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current character available from the source.
+ The current character available from the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that indicates whether the parser is in design mode.
+ true if the parser is in design mode; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Creates an end block from the last item of the block builder stack.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets a value that indicates whether the source status is end of file.
+ true if the source status is end of file; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the list of errors during parsing.
+ The list of errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified block type exists in the block builder list.
+ true if the specified block type exists in the block builder list; otherwise, false.
+ The block type to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the last accepted characters.
+ One of the values of the enumeration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the last span.
+ The last span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the markup parser for the context.
+ The markup parser for the context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Occurs when parse encountered error.
+ The source location.
+ The error message.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Occurs when parse encountered an error.
+ The source location.
+ The error message.
+ The other information about the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the text reader for the source document.
+ The text reader for the source document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new block builder at the end of the block builder stack and returns a disposable action that returns an end block.
+ A disposable action that returns an end block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Adds a new block builder at the end of the block builder stack and returns a disposable action that returns an end block.
+ A disposable action that returns an end block.
+ The type for the new block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Alternately switches the code parser or markup parser as the active parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that indicates whether white space is significant to ancestor block.
+ true is white space is significant to ancestor block; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides helper methods for the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a spacing combining mark or a non-spacing mark.
+ true if the specified character value is a spacing combining mark or a non-spacing mark; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a connector punctuation.
+ true if the specified character value is a connector punctuation; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a decimal digit number.
+ true if the specified character value is a decimal digit number; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use in email address.
+ true if the specified character value is valid for use in email address; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is used for formatting text layout or formatting text operation.
+ true if the specified character value is used for formatting text layout or formatting text operation.; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a hexadecimal digit number.
+ true if the specified character is a hexadecimal digit number; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified string value is an identifier.
+ true if the specified string value is an identifier; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified string value is an identifier.
+ true if the specified string value is an identifier; otherwise, false.
+ The value to check.
+ true to require that the identifier starts with a letter or underscore (_); otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use in identifier.
+ true if the specified character is valid for use in identifier; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is valid for use as start character of an identifier.
+ true if the specified character value is valid for use as start character of an identifier; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a letter.
+ true if the specified character is a letter; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a letter or a decimal digit number.
+ true if the specified character is a letter or a decimal digit number; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.
+ true if the specified character is a newline; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.
+ true if the specified character is a newline; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a terminating character token.
+ true if the specified character value is a terminating character token; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a terminating quoted string.
+ true if the specified character value is a terminating quoted string; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a whitespace.
+ true if the specified character value is a whitespace; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified character value is a whitespace or newline.
+ true if the specified character value is a whitespace or newline; otherwise, false.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Sanitizes the specified input name to conform as a valid value for class name.
+ The sanitized class name.
+ The value to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a parser visitor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the cancellation token.
+ The cancellation token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates that a visitor method has completed execution.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified block.
+ The block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified black after parsing.
+ The block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the given razor error.
+ The error to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified span.
+ The span to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Visits the specified block before parsing.
+ The block to visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides extension methods for parser visitor.
+
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a Razor parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The code parser.
+ The markup parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.
+ The created .
+ The object to parse.
+ The span callback.
+ The error callback.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.
+ The created .
+ The object to parse.
+ The span callback.
+ The error callback.
+ The cancellation token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.
+ The created .
+ The object to parse.
+ The span callback.
+ The error callback.
+ The context.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.
+ The created .
+ The object to parse.
+ The span callback.
+ The error callback.
+ The context.
+ The cancellation token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a task that parses a specified object.
+ The created .
+ The object to parse.
+ The consumer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the design time mode.
+ The design time mode.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.
+ The parser result.
+ The object to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.
+ The object to parse.
+ The visitor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.
+ The parser result.
+ The object to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.
+ The parser result.
+ The object to parse.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the specified object.
+ The object to parse.
+ The visitor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a tokenizer backed parser.
+ The type of tokenizer.
+ The type of symbol.
+ The type of SymbolType.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the list of symbols
+ The list of symbols.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the specified symbol.
+ The symbol to accept.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts all types of tokenizer.
+ true of the parser accepts all types of tokenizer; otherwise, false.
+ The types.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts and moves to the next tokenizer.
+ true if the parser accepts and moves to the next tokenizer; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts single whitespace character.
+ true if the parser accepts single whitespace character; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found.
+ The type of the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found and it will backup so that the next token is of the given type.
+ The type of the first token.
+ The type of the second token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given tokens until a token of the given type is found.
+ The type of the first token.
+ The type of the second token.
+ The type of the third token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given types is found.
+ The types of the token.
+
+
+ Accepts token while the condition has been reached.
+ The condition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the token while a token of the given type is not found.
+ The type of the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached.
+ The type of the first token.
+ The type of the second token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given type has been reached.
+ The type of the first token.
+ The type of the second token.
+ The type of the third token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token while the token of the given types has been reached.
+ The types.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser accepts whitespace in lines.
+ true if the parser accepts whitespace in lines; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a marker symbol if necessary.
+ The location where to add the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified type.
+ true if the token is at the specified type; otherwise, false.
+ The type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token is at the specified identifier.
+ true if the token is at the specified identifier; otherwise, false.
+ true to allow keywords; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parsing is balance.
+ true if the parsing is balance; otherwise, false.
+ The balancing mode.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parsing is balance.
+ true if the parsing is balance; otherwise, false.
+ The balancing mode.
+ The left parse.
+ The right parse.
+ The start of the mode.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a specified span.
+ The span to build.
+ The start location to build the span.
+ The content of the span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Configures the span.
+ The configuration.
+
+
+ Configures the span.
+ The configuration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current location of the current instance.
+ The current location of the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current symbol of this instance.
+ The current symbol of this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the tokenizer is in the end of file.
+ true if the tokenizer is in the end of file; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether to ensure the current parser.
+ true if to ensure the current parser; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given type.
+ The type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the expected token with the given types.
+ The types.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a specified span.
+ The span to initialize.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether this instance is at embedded transition.
+ true if this instance is at embedded transition; otherwise, false.
+ true to allow templates and comments; otherwise, false.
+ true to allow transitions; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language used for parsing.
+ The language used for parsing.
+
+
+ Determines whether the token with the given condition would pass.
+ true if the token with the given condition would pass; otherwise, false.
+ The condition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type would pass.
+ true if the token with the give type would pass; otherwise, false.
+ The type of the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given types would pass.
+ true if the token with the given types would pass; otherwise, false.
+ The types.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the parser advances to the next token.
+ true if the parser advances to the next token; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional.
+ true if parsing a token with the given type is optional; otherwise, false.
+ The type of the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether parsing a token with the given type is optional.
+ true if parsing a token with the given type is optional; otherwise, false.
+ The type of the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with accepted characters.
+ The accepted characters.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with span kind.
+ The span kind.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a token with a given span kind and accepted characters.
+ The span kind.
+ The accepted characters.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Outputs a span before the razor comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code..Gets the previous symbol of this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Pushes the span configuration.
+ An that shuts down the configuration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Pushes the span configuration.
+ An that shuts down the configuration.
+ The new configuration.
+
+
+ Pushes the span configuration.
+ An that shuts down the configuration.
+ The new configuration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the transition back.
+ The symbols.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the transition back.
+ The symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts the current transition back.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Displays the razor comment.
+
+
+ Reads a token while the condition is not reached.
+ The token to read.
+ The condition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the expected token is required.
+ true if the expected token is required; otherwise, false.
+ The expected token.
+ true to display an error if not found; otherwise, false.
+ The error base.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the associated with this instance.
+ The associated with this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span configuration.
+ The span configuration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the tokenizer.
+ The tokenizer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the token with the given type was parsed.
+ true if the token with the given type was parsed; otherwise, false.
+ The type of the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a Visual Basic code parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts spaces in the VB code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Checks for a condition and displays a keyword in the code.
+ The keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Asserts the given directive.
+ The directive to assert.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the directive is ‘AT’ directive.
+ true if the directive is an ‘AT’ directive; otherwise, false.
+ The directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the given keyword is ‘AT’.
+ true if the given keyword is ‘AT’; otherwise, false.
+ The keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Ends a terminated directive.
+ The function that ends the terminated directive.
+ The directive.
+ The block type.
+ The code generator.
+ true to allow markup; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the termination of directive body is ended.
+ true if the termination of directive body is ended; otherwise, false.
+ The directive.
+ The block start.
+ true to allow all transitions; otherwise, false.
+
+
+ Ends a termination of statement.
+ The function that ends the termination.
+ The keyword.
+ true if the termination supports exit; otherwise, false.
+ true if the termination supports continue; otherwise, false.
+
+
+ Ends a termination of statement.
+ The function that ends the termination.
+ The keyword.
+ true if the termination supports exit; otherwise, false.
+ true if the termination supports continue; otherwise, false.
+ The block name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Handles the embedded transition.
+ The last white space.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the code that handles the Exit or Continue keyword.
+ The keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a code that handles a transition.
+ The last white space.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the code is a helper directive.
+ true if the code is a helper directive; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code imports a statement.
+ true if the code imports a statement; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code inherits a statement.
+ true if the code inherits a statement; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is at embedded transition.
+ true if the code is at embedded transition; otherwise, false.
+ true to allow templates and comments; otherwise, false.
+ true to allow transitions; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is directive defined.
+ true if the code is directive defined; otherwise, false.
+ The directive.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the keywords associated with the code.
+ The keywords associated with the code.
+
+
+ Indicates a keyword that terminates a statement.
+ The function that terminates the statement.
+ The start.
+ The terminator.
+ true if the termination supports exit; otherwise, false.
+ true if the termination supports continue; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the language for the parser.
+ The language for the parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a layout directive.
+ true if the code is a layout directive; otherwise, false.
+
+
+ Maps a given directive.
+ The directive.
+ The action whether to map a given directive.
+
+
+ Maps a given keyword.
+ The keyword.
+ The action whether to map a given keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a nested block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the keyword from the code is optional.
+ true if the keyword from the code is optional; otherwise, false.
+ The keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is an option statement.
+ true if the code is an option statement; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the other parser.
+ The other parser.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parser block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the parser block.
+ The start sequence.
+ The end sequence.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Spans the output before Razor comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Blocks the parsing.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads a list of Visual Basic spaces.
+ A list of Visual Basic spaces.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the expected symbol is required.
+ true if the expected symbol is required; otherwise, false.
+ The expected symbol.
+ The error base.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a reserved word.
+ true if the code is a reserved word; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code is a section directive.
+ true if the code is a section directive; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the code has a session state directive.
+ true if the code has a session state directive; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the characteristics of the Visual Basic language.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Visual Basic marker symbol.
+ The created Visual Basic marker symbol.
+ The location to create the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Visual Basic symbol.
+ The created .
+ The location to create the symbol.
+ The content.
+ The type of the symbol.
+ The errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Visual Basic tokenizer.
+ The created .
+ The source where to create the tokenizer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flips the given bracket.
+ The type of the Visual Basic symbol.
+ The bracket to flip.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the type of the known symbol.
+ The type of the known symbol.
+ The type to retrieve.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a sample symbol with the given type.
+ A sample symbol with the given type.
+ The type of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets an instance of this .
+ An instance of .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the auto-complete editing handler class.
+
+
+ Initializes a new instance of the class.
+ The tokenizer.
+
+
+ Initializes a new instance of the class.
+ The tokenizer.
+ The accepted characters.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the auto-complete function is at the end of this span.
+ true if the auto-complete function is at the end of this span; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a string value to auto-complete.
+ A string value to auto-complete.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a parse result that can accept changes.
+ The phase of the target.
+ The normalized .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether this instance and a specified object are equal.
+ true if and this instance are the same type and represent the same value; otherwise, false.
+ The object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ A 32-bit signed integer that is the hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the fully qualified type name of this instance.
+ A String containing a fully qualified type name.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the block for creating webpages.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source for the block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the parser visitor of the block.
+ The parser visitor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a collection of SyntaxTreeNode to view the children of the block.
+ A collection of SyntaxTreeNode to view the children of the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the IBlockCodeGenerator to generate codes for the elements.
+ The IBlockCodeGenerator to generate codes for the elements.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current block.
+ true if the specified object is equal to the current block; otherwise, false.
+ The object to compare with the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a value indicating whether the block is equivalent to the same element.
+ true if the block is equivalent to the same element; otherwise, false.
+ The syntax tree node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Finds the first descendent span of the block.
+ The first descendent span of the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Finds the last descendent span of the block.
+ The last descendent span of the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Flattens a collection of a specified type for the block.
+ A collection of a specified type for the block to flatten.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the object is a block-level object.
+ true if the object is a block-level object; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length value of the block.
+ The length value of the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Locates the owner of the block.
+ The owner of the block to locate.
+ The text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the string name of the block.
+ The string name of the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the start to identify the specific location of the block.
+ The start to identify the specific location of the block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string that represents the current object.
+ A string that represents the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of code block.
+ The type of code block.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the block builder for the webpages.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The original block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a block for this instance.
+ A block builds for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the collection of child elements of the block builder.
+ The collection of child elements of the block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the code generator for the block builder.
+ The code generator for the block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the string name for the block builder.
+ The string name for the block builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Resets the block builder to its original position.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a block type that can be assigned null.
+ A block type that can be assigned null.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a parsing error in Razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The error message.
+ The absolute index of the source location.
+ The line index of the source location.
+ The column index of the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The error message.
+ The absolute index of the source location.
+ The line index of the source location.
+ The column index of the source location.
+ The length for the error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The error message.
+ The source location of the error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The error message.
+ The source location of the error.
+ The length for the error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this instance.
+ true if the specified object is equal to this instance; otherwise, false.
+ The object to compare to this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for the current instance.
+ The hash code for the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the length for the error.
+ The length for the error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the source location of the error.
+ The source location of the error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the error message.
+ The error message.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of this error instance.
+ The string representation of this error instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Represents a Razor parse tree node that contains the all the content of a block node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the class.
+ The builder to use for this span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Accepts visit from the specified visitor.
+ The object that performs the visit.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Changes the span builder for this span.
+ A delegate that will be executed along with this change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Sets the start character location of this span.
+ The new start location to set for this span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the code generator for the span.
+ The code generator for the span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the content of the span.
+ The content of the span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the handler for span edits.
+ The handler for span edits.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified object is equal to this span.
+ true if the specified object is equal to this span; otherwise, false.
+ The object to compare to this span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified node is equivalent to this span.
+ true if the specified node is equal to this span; otherwise, false.
+ The node to compare with this span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the hash code for this current span.
+ The hash code for this current span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets a value that indicates whether this node is a block node.
+ false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the kind for this span.
+ One of the values of the enumeration.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the length of the span content.
+ The length of the span content.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the next span in the tree node.
+ The next span in the tree node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the previous span in the tree node.
+ The previous span in the tree node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Replaces the span builder for this span with the specified span builder.
+ The new builder to use for this span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the start character location of the span.
+ The start character location of the span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the symbols used to generate the code for the span.
+ The symbols used to generate the code for the span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the string representation of this current span.
+ The string representation of this current span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the span builder for the syntax tree.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The original span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given symbol for the span builder.
+ The symbol builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Builds a span builder for this instance.
+ A span builder for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Clears the symbols of the span builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span code generator.
+ The span code generator.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span edit handler of the builder.
+ The span edit handler of the builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the span kind of the span builder.
+ The span kind of the span builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Resets the span builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the source location of the span builder.
+ The source location of the span builder.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the symbols for a generic read-only collection.
+ The symbols for a generic read-only collection.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the node for the syntax tree.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the visitor of the tree node.
+ The parser visitor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the syntax tree node is equivalent to given node.
+ true the syntax tree node is equivalent to given node; false.
+ The given node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the syntax tree node is a block-level object.
+ true if the syntax tree node is a block-level object; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length of the syntax tree node.
+ The length of the syntax tree node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the parent tree node of the current tree node.
+ The parent tree node of the current tree node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the specific source location for the syntax tree node.
+ The specific source location for the syntax tree node.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Provides a lookahead buffer for the text reader.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The text reader for the buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Begins the lookahead buffering operation for this .
+ A disposable action that ends the lookahead buffering.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Discards the backtrack context associated the lookahead buffering operation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets the current character in the buffer.
+ The current character in the buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Gets or sets the current location of the character in the buffer.
+ The current location of the character in the buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Releases the unmanaged resources used by the current instance of this class, and optionally releases the managed resources.
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Reads the next character from the text reader and appends it to the lookahead buffer.
+ true if a character was read from the text reader; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Advances the buffer position to the next character.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the current character in the buffer.
+ The current character in the buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Returns the current character from the buffer and advances the buffer position to the next character.
+ The current character from the buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a location tagged.
+ The type of the location tagged.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The value of the source.
+ The offset.
+ The line.
+ The column location of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The value of the source.
+ The location of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for the current instance.
+ The hash code for the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the location of the source.
+ The location of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two object are equal.
+ true if the two object are equal; otherwise, false.
+ The first object to compare.
+ The second object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the specified value to a object.
+ true if successfully converted; otherwise, false.
+ The value to convert.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two object are not equal.
+ true if the two object are not equal; otherwise, false.
+ The first object to compare.
+ The second objet to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the current instance.
+ The string that represents the current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the current instance.
+ A string that represents the current instance.
+ The format.
+ The format provider.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the value of the source.
+ The value of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the token to look for the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The action to cancel.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the token.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the resources used by the current instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the and optionally releases the managed resources.
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a reader
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source reader.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The string content.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The text buffering.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length of the text to read.
+ The length of the text to read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the source of location for the text reader.
+ The source of location for the text reader.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the next character without changing the state of the reader or the character source.
+ An integer representing the next character to be read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position to seek the text reader.
+ The position to seek the text reader.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the next character from the text reader and advances the character position by one character.
+ The next character from the text reader, or -1 if no more characters are available.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The absolute index.
+ The line index.
+ The character index.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the absolute index for the source location.
+ The absolute index for the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds the two object.
+ The sum of the two object.
+ The first object to add.
+ The second object to add.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Advances the specified object to the given location.
+ The source location.
+ The location where to advance the object.
+ The text that advances to the given location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the character index for the source location.
+ The character index for the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Compares current object to the other object.
+ The value of the objects compared.
+ The object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the current object is equal to the other object.
+ true if the current object is equal to the other object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code for this instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the line index for the source location.
+ The line index for the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds the two object.
+ The that is the sum of the two object.
+ The object to add.
+ The object to add.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two objects are equal.
+ true if the two objects are equal; otherwise, false.
+ The first object to compare.
+ The second object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the first object is greater than the second object.
+ true if the first object is greater than the second object; otherwise, false.
+ The first object.
+ The second object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two object are not equal.
+ true if the two objects are not equal; otherwise, false.
+ The object to compare.
+ The object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the first object is less than the second object.
+ true if the first object is greater than the second object; otherwise, false.
+ The first object.
+ The second object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ Returns .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Subtracts the first object to the second object.
+ The difference of the two objects.
+ The first object.
+ The second object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the source location.
+ A string representation of the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides a source location tracker.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The current location of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Calculates the new location of the source.
+ The new source location.
+ The last position.
+ The new content.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the current location of the source.
+ The current location of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Updates the source location.
+ The character to read.
+ The character to update.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Updates the location of the source.
+ The object.
+ The content of the source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides a reader for text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The text buffer to read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Begins reading the current text buffer.
+ An instance that stops the text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Cancels backtrack.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current location of the text buffer.
+ The current location of the text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Releases the unmanaged resources used by the class and optionally releases the managed resources.
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the next text buffer to read.
+ The next text buffer to read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the current text buffer.
+ The current text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Describes a text change operation.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The position of the text change in the snapshot immediately before the change.
+ The length of the old text.
+ An old text buffer.
+ The position of the text change in the snapshot immediately after the change.
+ The length of the new text.
+ A new text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Applies the specified text change.
+ A string that contains the value of the text.
+ The content of the text.
+ The change offset.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Applies the specified text change.
+ A string that contains the value of the text.
+ The span of the text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the hash code for this text change.
+ The hash code for this text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether this text change is a delete.
+ true if this text change is a delete; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether this text change is an insert.
+ true if this text change is an insert; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether this text change is a replace.
+ true if this text change is a replace; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a new text buffer.
+ A new text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of the new text.
+ The length of the new text.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position of the text change in the snapshot immediately after the change.
+ The position of the text change in the snapshot immediately after the change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the text that replaced the old text.
+ The text that replaced the old text.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a normalized value of this text change.
+ A normalized value of this text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets an old text buffer.
+ An old text buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the length of the old text.
+ The length of the old text.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position of the text change in the snapshot immediately before the change.
+ The position of the text change in the snapshot immediately before the change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the text that was replaced.
+ The text that was replaced.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two text change are equal.
+ true if the two text change are equal; otherwise, false.
+ The left text change.
+ The right text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two text change are not equal.
+ true if the two text change are not equal; otherwise, false.
+ The left text change.
+ The right text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the text change.
+ A string representation of the text change.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides reader for text document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source to read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the length of the document.
+ The length of the document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the location of the document.
+ The location of the document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the next text document to read.
+ The next text document to read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position of the text document.
+ The position of the text document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads a specified text document.
+ The text document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides helper functions for the CSharp tokenizer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified character can be used for identifier.
+ true if the specified character can be used for identifier; otherwise, false.
+ The character to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified character can be used as an identifier start character.
+ true if the specified character can be used as an identifier start character; otherwise, false.
+ The character to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified character is a literal suffix for real numbers.
+ true if the specified character is a literal suffix for real numbers; otherwise, false.
+ The character to check.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a CSharp tokenizer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a CSharp tokenizer symbol.
+ A CSharp tokenizer symbol.
+ The beginning of the source location.
+ The contents.
+ The CSharp symbol type.
+ A collection of razor errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the star type of the .
+ The star type of the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor comment transition type for the .
+ The razor comment transition type for the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor comment type for the .
+ The razor comment type for the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the state of the machine.
+ The state of the machine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the html tokenizer of the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source for the text document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a symbol for the specified parameters of the html tokenizer.
+ A symbol to create for the specified parameters of the html tokenizer.
+ The source location.
+ The content string.
+ The type of html symbol.
+ The razor errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the html symbols for the razor comment star type.
+ The html symbols for the razor comment star type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the html symbols for the razor comment transition type.
+ The html symbols for the razor comment transition type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the html symbols for the razor comment type.
+ The html symbols for the razor comment type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the start of the state machine for the html.
+ The start of the state machine for the html.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+ The type for the language symbol.
+ The enumeration type for the language symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a result after the razor comment transition.
+ The result.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the lookahead buffer contains the expected string.
+ true if the lookahead buffer contains the expected string; otherwise, false.
+ The string to check.
+ true to indicate comparison is case sensitive; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the buffer for the tokenizer.
+ The buffer for the tokenizer.
+
+
+ Returns a function delegate, that accepts a character parameter and returns a value that indicates whether the character parameter is equal to specified character or white space.
+ A function delegate.
+ The character used to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a language symbol type for the tokenizer with the specified content.
+ A language symbol type for the tokenizer.
+ The start of the source location.
+ The content value.
+ The symbol type.
+ The razor error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current character in the tokenizer.
+ The current character.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a list of the current razor errors.
+ A list of the current errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current source location.
+ The current source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current start of the source location.
+ The current start of the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value whether the tokenizer current location is at the end of the file.
+ true if the tokenizer current location is at the end of the file; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the language end symbol type used by the tokenizer.
+ The language end symbol type.
+ The start of the source location.
+ The enumeration type for the language symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the language end symbol type used by the tokenizer.
+ The language end symbol type.
+ The enumeration type for the language symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value whether the tokenizer have content.
+ true if the tokenizer have content; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads to the next character from the code reader.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Shows the next symbol to be used.
+ The next symbol to be used.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Reads the next symbol in the code.
+ The next symbol to read.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Parses the Razor comment body.
+ The object that represent the state of the result.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the star type for the razor comment.
+ The star type for the razor comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the transition type for the razor comment.
+ The transition type for the razor comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of razor comment.
+ The type of razor comment.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Sets the tokenizer status to its initial state.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Resumes using the previous language symbol type.
+ The previous language symbol type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Uses a single type of symbol.
+ A single type of symbol.
+ The type of symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the source of the text document.
+ The source of the source document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the start symbol used in this class.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the next language symbol type.
+ The next language symbol type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Takes the string if found in the lookahead buffer into the tokenizer buffer.
+ true if the lookahead buffer contains the expected string; otherwise, false.
+ The string to match.
+ true to indicate comparison is case sensitive; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the current character into the buffer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given input string into the buffer.
+ true if the whole input string was accepted; false, if only a substring was accepted.
+ The input string.
+ true to indicate comparison is case sensitive; otherwise, false.
+
+
+ Parses the source document until the condition specified by predicate is met or end file is reached.
+ true if the predicate condition is met; false if end of file is reached.
+ The predicate that specifies the processing condition.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the specified parameters for the tokenizer view.
+ The type tokenizer.
+ The type symbol.
+ The token symbol type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The tokenizer view.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the current view of the TSymbol.
+ The current view of the TSymbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the view can reach the end of a file.
+ true if the view can reach the end of a file; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the tokenizer moves to the next view.
+ true if the tokenizer moves to the next view; false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts a specified symbol into the tokenizer view.
+ The symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the source of the text document for the tokenizer view.
+ The source of the text document for the tokenizer view.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the tokenizer to view the symbols for the razor.
+ The tokenizer to view the symbols for the razor.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a set of characters as helpers in VB.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether a specified character is enclosed in double quotation marks (").
+ true if the character is enclosed in double quotation marks ("); otherwise, false.
+ The character.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether a character is in octal digit.
+ true if a character is in octal digit; otherwise, false.
+ The character.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether a specified character is enclosed in a single quotation mark (').
+ true if the character is enclosed in a single quotation mark ('); otherwise, false.
+ The character.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Allows an application to break a VB symbol into tokens.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source of text.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a domain of symbols.
+ A domain of symbols.
+ The source location.
+ The content value.
+ The .
+ The razor error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the VB symbol type.
+ The VB symbol type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the transition style of the VB symbol.
+ The transition style of the VB symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor type comment of the .
+ The razor type comment of the .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the start state of the machine.
+ The start state of the machine.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a C sharp symbol for the razor tokenizer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The symbol’s offset.
+ The line.
+ The column
+ The content of the symbol.
+ The type of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The symbol’s offset.
+ The line.
+ The column
+ The content of the symbol.
+ The type of the symbol.
+ A list of errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The location to start the symbol.
+ The content of the symbol.
+ The type of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The location to start the symbol.
+ The content of the symbol.
+ The type of the symbol.
+ A list of errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+ The object to compare to.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the symbol has an escaped identifier.
+ true if the symbol has an escaped identifier; otherwise, false.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this current instance.
+ The hash code for this current instance.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the language keyword.
+ The language keyword.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the Html symbols.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The location of the symbol.
+ The exact line the symbol is found.
+ The column number the symbol is found.
+ The content value.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The location of the symbol.
+ The exact line the symbol is found.
+ The column number the symbol is found.
+ The content value.
+ The .
+ The razor error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The start of the source location.
+ The content value.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The start of the source location.
+ The content value.
+ The .
+ The razor error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents an interface for the web razor symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Changes the location of the symbol.
+ The new location of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of the symbol.
+ The content of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the starting offset of the symbol.
+ The location where to start the document.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the location of the symbol.
+ The location of the symbol.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a new instance of symbols.
+ The generic type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The source location.
+ The content value.
+ The type.
+ The razor error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Changes the start of the machine.
+ The new start.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of a .
+ The content of a .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified Object is equal to the current Object.
+ true if the specified Object is equal to the current Object; otherwise, false.
+ The object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the razor error.
+ The razor error.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves a hash code based on the current object.
+ A hash of the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Starts the time’s offset for the source location.
+ The document start.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the starting point of the source location.
+ The starting point of the source location.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates a string representation of the current object.
+ A string representation of the current object.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a Type that inherits from the base Type.
+ A Type that inherits from the base Type.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the symbol extensions for the web tokenizer.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this class.
+ The content of this class.
+ The symbols to provide.
+ The starting index of the span.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this class.
+ The content of this class.
+ The intersection with the given span.
+
+
+ Gets the content of this class.
+ The content of this class.
+ The intersection with the given span.
+ A list of chosen symbols.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the content of this class.
+ The content of this class.
+ The provided symbols.
+
+
+ Enumerates the list of Visual Basic keywords.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the VB symbol components.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The offset value.
+ The line value.
+ The column value.
+ The content String value.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The offset value.
+ The line value.
+ The column value.
+ The content String value.
+ The .
+ List of razor errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The start of the source location.
+ The content String value.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the class.
+ The start of the source location.
+ The content String value.
+ The .
+ List of razor errors.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether the current object is equal to the new object.
+ true if the current object is equal to the new object; otherwise, false.
+ The object to compare.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the hash code for this instance.
+ The hash code to return.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the specified data sample from the object.
+ The specified data sample from the object.
+ The .
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the keyword used in the VB.
+ The keyword used.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+ This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.WebApi.Client.5.2.3/.signature.p7s b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/.signature.p7s
new file mode 100644
index 0000000..6d7e5cf
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/.signature.p7s differ
diff --git a/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg
new file mode 100644
index 0000000..efe5b2d
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg differ
diff --git a/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll
new file mode 100644
index 0000000..3b76acd
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll differ
diff --git a/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.xml b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.xml
new file mode 100644
index 0000000..3fb6597
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.xml
@@ -0,0 +1,2094 @@
+
+
+
+ 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&name2=value2; state2:name3=value3&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."/>.
+ 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.
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll
new file mode 100644
index 0000000..981d9d7
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll differ
diff --git a/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml
new file mode 100644
index 0000000..42f64e8
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml
@@ -0,0 +1,4025 @@
+
+
+
+ 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}'..
+
+
+
+
diff --git a/packages/Microsoft.AspNet.WebApi.Core.5.2.3/.signature.p7s b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/.signature.p7s
new file mode 100644
index 0000000..6027184
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/.signature.p7s differ
diff --git a/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform
new file mode 100644
index 0000000..8e3f2a6
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg
new file mode 100644
index 0000000..9600f92
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg differ
diff --git a/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll
new file mode 100644
index 0000000..e1dbdd1
Binary files /dev/null and b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll differ
diff --git a/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml
new file mode 100644
index 0000000..365dd7b
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml
@@ -0,0 +1,6664 @@
+
+
+
+ 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.
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/.signature.p7s b/packages/Microsoft.AspNet.WebPages.3.1.1/.signature.p7s
new file mode 100644
index 0000000..99bf331
Binary files /dev/null and b/packages/Microsoft.AspNet.WebPages.3.1.1/.signature.p7s differ
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/Content/Web.config.install.xdt b/packages/Microsoft.AspNet.WebPages.3.1.1/Content/Web.config.install.xdt
new file mode 100644
index 0000000..74a98dc
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebPages.3.1.1/Content/Web.config.install.xdt
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/Content/Web.config.uninstall.xdt b/packages/Microsoft.AspNet.WebPages.3.1.1/Content/Web.config.uninstall.xdt
new file mode 100644
index 0000000..234e2c5
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebPages.3.1.1/Content/Web.config.uninstall.xdt
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/Microsoft.AspNet.WebPages.3.1.1.nupkg b/packages/Microsoft.AspNet.WebPages.3.1.1/Microsoft.AspNet.WebPages.3.1.1.nupkg
new file mode 100644
index 0000000..953285f
Binary files /dev/null and b/packages/Microsoft.AspNet.WebPages.3.1.1/Microsoft.AspNet.WebPages.3.1.1.nupkg differ
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.Helpers.dll b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.Helpers.dll
new file mode 100644
index 0000000..7e6cd4e
Binary files /dev/null and b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.Helpers.dll differ
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.Helpers.xml b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.Helpers.xml
new file mode 100644
index 0000000..f2ec0c5
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.Helpers.xml
@@ -0,0 +1,587 @@
+
+
+
+ System.Web.Helpers
+
+
+
+ Chart width in pixels.
+ Chart height in pixels.
+ String containing chart theme definition. Chart's theme defines properties like colors, positions, etc.
+ This parameter is primarily meant for one of the predefined Chart themes, however any valid chart theme is acceptable.
+ Path to a file containing definition of chart theme, default is none.
+ Both the theme and themePath parameters can be specified. In this case, the Chart class applies the theme xml first
+ followed by the content of file at themePath.
+
+
+ Chart(100, 100, theme: ChartTheme.Blue)
+ Chart(100, 100, theme: ChartTheme.Vanilla, themePath: "my-theme.xml")
+ Chart(100, 100, theme: ".... definition inline ...." )
+ Chart(100, 100, themePath: "my-theme.xml")
+ Any valid theme definition can be used as content of the file specified in themePath
+
+
+
+ Legend title.
+ Legend name.
+
+
+ Series name.
+ Chart type (see: SeriesChartType).
+ Chart area where the series is displayed.
+ Axis label for the series.
+ Legend for the series.
+ Axis marker step.
+ X data source, if data-binding the series.
+ Column for the X data points, if data-binding the series.
+ Y data source(s), if data-binding the series.
+ Column(s) for the Y data points, if data-binding the series.
+
+
+ Title text.
+ Title name.
+
+
+ Title for X-axis
+ The minimum value on X-axis. Default 0
+ The maximum value on X-axis. Default NaN
+
+
+ Title for Y-axis
+ The minimum value on Y-axis. Default 0
+ The maximum value on Y-axis. Default NaN
+
+
+
+ Data-binds the chart by grouping values in a series. The series will be created by the chart.
+
+ Chart data source.
+ Column which series should be grouped by.
+ Column for the X data points.
+ Column(s) for the Y data points, separated by comma.
+
+ Sort order (see: PointSortOrder).
+
+
+
+ Data-binds the chart using a data source, with multiple y values supported. The series will be created by the chart.
+
+ Chart data source.
+ Column for the X data points.
+
+
+
+ Get the bytes for the chart image.
+
+ Image format (see: ChartImageFormat).
+
+
+
+ Loads a chart from the cache. This can be used to render from an image handler.
+
+ Cache key.
+
+
+
+ Saves the chart image to a file.
+
+ File path.
+ Chart image format (see: ChartImageFormat).
+
+
+
+ Saves the chart in cache. This can be used to render from an image handler.
+
+ Cache key. Uses new GUID by default.
+ Number of minutes to save in cache.
+ Whether a sliding expiration policy is used.
+ Cache key.
+
+
+
+ Saves the chart to the specified template file.
+
+ XML template file path.
+
+
+
+ Saves the chart to the specified template file.
+
+ The .
+ XML template file path.
+
+
+
+ Writes the chart image to the response stream. This can be used to render from an image handler.
+
+ Image format (see: ChartImageFormat).
+
+
+
+ Writes a chart stored in cache to the response stream. This can be used to render from an image handler.
+
+ Cache key.
+ Image format (see: ChartImageFormat).
+
+
+
+ Method to convert a string to a ChartImageFormat.
+ The chart image needs to be normalized to allow for alternate names such as 'jpg', 'xpng' etc
+ to be mapped to their appropriate ChartImageFormat.
+
+
+
+
+ Resolves and maps a path (physical or virtual) to a physical path on the server.
+
+ The .
+ Either a physical rooted path or a virtual path to be mapped.
+ Physical paths are returned without modifications. Virtual paths are resolved relative to the current executing page.
+
+ Result of this call should not be shown to the user (e.g. in an exception message) since
+ it could be security sensitive. But we need to pass this result to the file APIs like File.WriteAllBytes
+ which will show it if exceptions are raised from them. Unfortunately VirtualPathProvider doesn't have
+ APIs for writing so we can't use that.
+
+
+
+ Resolves path relative to the current executing page
+
+
+
+
+ Helper to evaluate different method on dynamic objects
+
+
+
+
+ Converter that knows how to get the member values from a dynamic object.
+
+
+
+
+ Provides various info about ASP.NET server.
+
+
+
+
+ todo: figure out right place for this
+
+
+
+
+ Generates HTML required to display server information.
+
+
+ HTML generated is XHTML 1.0 compliant but not XHTML 1.1 or HTML5 compliant. The reason is that we
+ generate <style> tag inside <body> tag, which is not allowed. This is by design for now since ServerInfo
+ is debugging aid and should not be used as a permanent part of any web page.
+
+
+
+
+ Renders a table section printing out rows and columns.
+
+
+
+
+ Inserts spaces after ',' and ';' so table can be rendered properly.
+
+
+
+
+ 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 Argument conversion to type "{0}" failed..
+
+
+
+
+ Looks up a localized string similar to A series cannot be data-bound to a string object..
+
+
+
+
+ Looks up a localized string similar to The theme file "{0}" could not be found..
+
+
+
+
+ Looks up a localized string similar to The hash algorithm '{0}' is not supported, valid values are: sha256, sha1, md5.
+
+
+
+
+ Looks up a localized string similar to "{0}" is invalid image format. Valid values are image format names like: "JPEG", "BMP", "GIF", "PNG", etc..
+
+
+
+
+ Looks up a localized string similar to Unable to convert to "{0}". Use Json.Decode<T> instead..
+
+
+
+
+ Looks up a localized string similar to Previously Displayed.
+
+
+
+
+ Looks up a localized string similar to Accessing a property threw an exception: .
+
+
+
+
+ Looks up a localized string similar to File path "{0}" is invalid..
+
+
+
+
+ Looks up a localized string similar to Additional server information is available when the page is running with high trust..
+
+
+
+
+ Looks up a localized string similar to Environment Variables.
+
+
+
+
+ Looks up a localized string similar to ASP.NET Server Information.
+
+
+
+
+ Looks up a localized string similar to HTTP Runtime Information.
+
+
+
+
+ Looks up a localized string similar to Legacy Code Access Security.
+
+
+
+
+ Looks up a localized string similar to Legacy Code Access Security has been detected on your system. Microsoft WebPage features require the ASP.NET 4 Code Access Security model. For information about how to resolve this, contact your server administrator..
+
+
+
+
+ Looks up a localized string similar to no value.
+
+
+
+
+ Looks up a localized string similar to Server Configuration.
+
+
+
+
+ Looks up a localized string similar to ASP.NET Server Variables.
+
+
+
+
+ Looks up a localized string similar to The column name cannot be null or an empty string unless a custom format is specified..
+
+
+
+
+ Looks up a localized string similar to Column "{0}" does not exist..
+
+
+
+
+ Looks up a localized string similar to The WebGrid instance is already bound to a data source..
+
+
+
+
+ Looks up a localized string similar to A data source must be bound before this operation can be performed..
+
+
+
+
+ Looks up a localized string similar to This operation is not supported when paging is disabled for the "WebGrid" object..
+
+
+
+
+ Looks up a localized string similar to This operation is not supported when sorting is disabled for the "WebGrid" object..
+
+
+
+
+ Looks up a localized string similar to To use this argument, pager mode "{0}" must be enabled..
+
+
+
+
+ Looks up a localized string similar to This property cannot be set after the "WebGrid" object has been sorted or paged. Make sure that this property is set prior to invoking the "Rows" property directly or indirectly through other methods such as "GetHtml", "Pager", "Table", etc..
+
+
+
+
+ Looks up a localized string similar to A value for "rowCount" must be specified when "autoSortAndPage" is set to true and paging is enabled..
+
+
+
+
+ Looks up a localized string similar to Select.
+
+
+
+
+ Looks up a localized string similar to The "fontColor" value is invalid. Valid values are names like "White", "Black", or "DarkBlue", or hexadecimal values in the form "#RRGGBB" or "#RGB"..
+
+
+
+
+ Looks up a localized string similar to The "fontFamily" value is invalid. Valid values are font family names like: "Arial", "Times New Roman", etc. Make sure that the font family you are trying to use is installed on the server..
+
+
+
+
+ Looks up a localized string similar to The "fontStyle" value is invalid. Valid values are: "Regular", "Bold", "Italic", "Underline", and "Strikeout"..
+
+
+
+
+ Looks up a localized string similar to The "horizontalAlign" value is invalid. Valid values are: "Right", "Left", and "Center"..
+
+
+
+
+ Looks up a localized string similar to The "verticalAlign" value is invalid. Valid values are: "Top", "Bottom", and "Middle"..
+
+
+
+
+ Looks up a localized string similar to Watermark width and height must both be positive or both be zero..
+
+
+
+
+ Looks up a localized string similar to An image could not be constructed from the content provided..
+
+
+
+
+ Looks up a localized string similar to The "priority" value is invalid. Valid values are "Low", "Normal" and "High"..
+
+
+
+
+ Looks up a localized string similar to A string in the collection is null or empty..
+
+
+
+
+ Looks up a localized string similar to "SmtpServer" was not specified..
+
+
+
+
+ Looks up a localized string similar to No "From" email address was specified and a default value could not be assigned..
+
+
+
+
+ Source wrapper for data provided by the user that is already sorted and paged. The user provides the WebGrid the rows to bind and additionally the total number of rows that
+ are available.
+
+
+
+
+ Default data source that sorts results if a sort column is specified.
+
+
+
+ Data source
+ Data source column names. Auto-populated by default.
+ Default sort column.
+ Number of rows per page.
+
+
+ ID for the grid's container element. This enables AJAX support.
+ Callback function for the AJAX functionality once the update is complete
+ Prefix for query string fields to support multiple grids.
+ Query string field name for page number.
+ Query string field name for selected row number.
+ Query string field name for sort column.
+ Query string field name for sort direction.
+
+
+
+ Gets the HTML for a table with a pager.
+
+ Table class for styling.
+ Header row class for styling.
+ Footer row class for styling.
+ Row class for styling (odd rows only).
+ Row class for styling (even rows only).
+ Selected row class for styling.
+ Whether the header row should be displayed.
+ The string displayed as the table caption
+ Whether the table can add empty rows to ensure the rowsPerPage row count.
+ Value used to populate empty rows. This property is only used when is set
+ Column model for customizing column rendering.
+ Columns to exclude when auto-populating columns.
+ Modes for pager rendering.
+ Text for link to first page.
+ Text for link to previous page.
+ Text for link to next page.
+ Text for link to last page.
+ Number of numeric links that should display.
+ An object that contains the HTML attributes to set for the element.
+
+
+
+ Gets the HTML for a pager.
+
+ Modes for pager rendering.
+ Text for link to first page.
+ Text for link to previous page.
+ Text for link to next page.
+ Text for link to last page.
+ Number of numeric links that should display.
+
+
+ Modes for pager rendering.
+ Text for link to first page.
+ Text for link to previous page.
+ Text for link to next page.
+ Text for link to last page.
+ Number of numeric links that should display.
+ The Pager can be explicitly called by the public API or is called by the WebGrid when no footer is provided.
+ In the explicit scenario, we would need to render a container for the pager to allow identifying the pager links.
+ In the implicit scenario, the grid table would be the container.
+
+
+
+
+ Gets the HTML for a table with a pager.
+
+ Table class for styling.
+ Header row class for styling.
+ Footer row class for styling.
+ Row class for styling (odd rows only).
+ Row class for styling (even rows only).
+ Selected row class for styling.
+ The table caption
+ Whether the header row should be displayed.
+ Whether the table can add empty rows to ensure the rowsPerPage row count.
+ Value used to populate empty rows. This property is only used when is set
+ Column model for customizing column rendering.
+ Columns to exclude when auto-populating columns.
+ Table footer template.
+ An object that contains the HTML attributes to set for the element.
+
+
+
+ Adds a specific sort function for a given column.
+
+ The type of elements in the grid's source.
+ The column type, usually inferred from the keySelector function's return type.
+ The column name (as used for sorting)
+ The function used to select a key to sort by, for each element in the grid's source.
+ The current grid, with the new custom sorter applied.
+
+
+ var grid = new WebGrid(items)
+ .AddSorter("Manager.Name", (Employee x) => (x == null || x.Manager == null) ? null : x.Manager.Name);
+
+
+
+
+ The set of columns that are rendered to the client.
+
+
+
+ Adds text watermark to a WebImage.
+
+ Text to use as a watermark.
+ Watermark color. Can be specified as a string (e.g. "White") or as a hex value (e.g. "#00FF00").
+ Font size in points.
+ Font style: bold, italics, etc.
+ Font family name: e.g. Microsoft Sans Serif
+ Horizontal alignment for watermark text. Can be "right", "left", or "center".
+ Vertical alignment for watermark text. Can be "top", "bottom", or "middle".
+ Watermark text opacity. Should be between 0 and 100.
+ Size of padding around watermark text in pixels.
+ Modified WebImage instance with added watermark.
+
+
+
+ Adds image watermark to an image.
+
+ Image to use as a watermark.
+ Width of watermark.
+ Height of watermark.
+ Horizontal alignment for watermark image. Can be "right", "left", or "center".
+ Vertical alignment for watermark image. Can be "top", "bottom", or "middle".
+ Watermark text opacity. Should be between 0 and 100.
+ Size of padding around watermark image in pixels.
+ Modified WebImage instance with added watermark.
+
+
+
+ Adds image watermark to an image.
+
+ File to read watermark image from.
+ Width of watermark.
+ Height of watermark.
+ Horizontal alignment for watermark image. Can be "right", "left", or "center".
+ Vertical alignment for watermark image. Can be "top", "bottom", or "middle".
+ Watermark text opacity. Should be between 0 and 100.
+ Size of padding around watermark image in pixels.
+ WebImage instance with added watermark.
+
+
+ If no filePath is specified, the method falls back to the file name if the image was constructed from a file or
+ the file name on the client (the browser machine) if the image was built off GetImageFromRequest
+
+ The format the image is saved in
+ Appends a well known extension to the filePath based on the imageFormat specified.
+ If the filePath uses a valid extension, no change is made.
+ e.g. format: "jpg", filePath: "foo.txt". Image saved at = "foo.txt.jpeg"
+ format: "png", filePath: "foo.png". Image saved at = "foo.txt.png"
+
+
+
+
+ Constructs a System.Drawing.Image instance from the content which validates the contents of the image.
+
+ When an Image construction fails.
+
+
+ Caller has to dispose of returned Bitmap object.
+
+
+
+ MailMessage dictates that headers values that have equivalent properties would be discarded or overwritten. The list of values is available at
+ http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.aspx
+
+
+
+
+ Parses a SMTP Mail header of the format "name: value"
+
+ True if the header was parsed.
+
+
+
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Deployment.dll b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Deployment.dll
new file mode 100644
index 0000000..fe224fb
Binary files /dev/null and b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Deployment.dll differ
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Deployment.xml b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Deployment.xml
new file mode 100644
index 0000000..b5fd448
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Deployment.xml
@@ -0,0 +1,231 @@
+
+
+
+ System.Web.WebPages.Deployment
+
+
+
+
+ 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 Value cannot be null or an empty string..
+
+
+
+
+ Looks up a localized string similar to Value must be between {0} and {1}..
+
+
+
+
+ Looks up a localized string similar to Value must be a value from the "{0}" enumeration..
+
+
+
+
+ Looks up a localized string similar to Value must be greater than {0}..
+
+
+
+
+ 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 {0}..
+
+
+
+
+ Looks up a localized string similar to Value must be less than or equal to {0}..
+
+
+
+
+ Looks up a localized string similar to Value cannot be an empty string. It must either be null or a non-empty string..
+
+
+
+
+ Returns the version of a System.Web.WebPages.Deployment.dll if it is present in the bin and matches the name and
+ public key token of the current assembly.
+
+ Version from bin if present, null otherwise.
+
+
+
+ Reads a special cached file from %WindDir%\Microsoft.NET\Framework\vx.x\ASP.NET Temporary Files\<x>\<y>\UserCache that is
+ available across AppDomain recycles.
+
+
+
+
+ Creates or opens a special cached file that is created under %WindDir%\Microsoft.NET\Framework\vx.x\ASP.NET Temporary Files\<x>\<y>\UserCache that is
+ available across AppDomain recycles.
+
+
+
+
+ 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 "InstallPath" name was not found in the Web Pages registry key "{0}"..
+
+
+
+
+ Looks up a localized string similar to Could not determine which version of ASP.NET Web Pages to use.
+
+ In order to use this site, specify a version in the site’s web.config file. For more information, see the following article on the Microsoft support site: http://go.microsoft.com/fwlink/?LinkId=254126.
+
+
+
+
+ Looks up a localized string similar to The Web Pages registry key "{0}" does not exist..
+
+
+
+
+ Looks up a localized string similar to Changes were detected in the Web Pages runtime version that require your application to be recompiled. Refresh your browser window to continue..
+
+
+
+
+ Looks up a localized string similar to Conflicting versions of ASP.NET Web Pages detected: specified version is "{0}", but the version in bin is "{1}". To continue, remove files from the application's bin directory or remove the version specification in web.config..
+
+
+
+
+ Looks up a localized string similar to Specified Web Pages version "{0}" could not be found. Update your web.config to specify a different version. Current version: "{1}"..
+
+
+
+
+ File name for a temporary file that we drop in bin to force recompilation.
+
+
+
+ Physical or virtual path to a directory where we need to determine the version of WebPages to be used.
+
+ In a non-hosted scenario, this method would only look at a web.config that is present at the current path. Any config settings at an
+ ancestor directory would not be considered.
+ If we are unable to determine a version, we would assume that this is a v1 app.
+
+
+
+
+ This is meant to test an obsolete method. Don't use this!
+
+
+
+
+ Determines if Asp.Net Web Pages is enabled.
+ Web Pages is enabled if there's a webPages:Enabled key in AppSettings is set to "true" or if there's a cshtml file in the current path
+ and the key is not present.
+
+ The path at which to determine if web pages is enabled.
+
+ In a non-hosted scenario, this method would only look at a web.config that is present at the current path. Any config settings at an
+ ancestor directory would not be considered.
+
+
+
+
+ In a non-hosted scenario, this method would only look at a web.config that is present at the current path. Any config settings at an
+ ancestor directory would not be considered.
+
+
+
+
+ Returns the value for webPages:Enabled AppSetting value in web.config.
+
+
+
+
+ Returns the version of WebPages to be used for a specified path.
+
+
+ This method would always returns a value regardless of web pages is explicitly disabled (via config) or implicitly disabled (by virtue of not having a cshtml file) at
+ the specified path.
+
+
+
+
+ Gets full path to a folder that contains ASP.NET WebPages assemblies for a given version. Used by
+ WebMatrix and Visual Studio so they know what to copy to an app's Bin folder or deploy to a hoster.
+
+
+
+
+ HttpRuntime.BinDirectory is unavailable in design time and throws if we try to access it. To workaround this, if we aren't hosted,
+ we will assume that the path that was passed to us is the application root.
+
+
+
+
+
+
+ Reads a previously persisted version number from build manager's cached directory.
+
+ Null if a previous version number does not exist or is not a valid version number, read version number otherwise.
+
+
+
+ Persists the version number in a file under the build manager's cached directory.
+
+
+
+
+ Forces recompilation of the application by dropping a file under bin.
+
+ File system instance used to write a file to bin directory.
+ Path to bin directory of the application
+
+
+
+ Name of the the temporary file used by BuildManager.CreateCachedFile / BuildManager.ReadCachedFile where we cache WebPages's version number.
+
+
+
+
+
+ Key used to indicate to tooling that the compile exception we throw to refresh the app domain originated from us so that they can deal with it correctly.
+
+
+
+
+ WebPages stores the version to be compiled against in AppSettings as >add key="webpages:version" value="1.0" /<.
+ Changing values AppSettings does not cause recompilation therefore we could run into a state where we have files compiled against v1 but the application is
+ currently v2.
+
+
+
+
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Razor.dll b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Razor.dll
new file mode 100644
index 0000000..9fcc8e6
Binary files /dev/null and b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Razor.dll differ
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Razor.xml b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Razor.xml
new file mode 100644
index 0000000..9cf3c4a
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.Razor.xml
@@ -0,0 +1,111 @@
+
+
+
+ System.Web.WebPages.Razor
+
+
+
+
+ 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 Value cannot be null or an empty string..
+
+
+
+
+ Looks up a localized string similar to Value must be between {0} and {1}..
+
+
+
+
+ Looks up a localized string similar to Value must be a value from the "{0}" enumeration..
+
+
+
+
+ Looks up a localized string similar to Value must be greater than {0}..
+
+
+
+
+ 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 {0}..
+
+
+
+
+ Looks up a localized string similar to Value must be less than or equal to {0}..
+
+
+
+
+ Looks up a localized string similar to Value cannot be an empty string. It must either be null or a non-empty string..
+
+
+
+
+ For unit testing.
+
+
+
+
+ For unit testing
+
+
+
+
+ Adds a namespace to the global imports list for this AppDomain
+
+
+ IMPORTANT: ALL uses of WebPageRazorHost (and derived classes) within the same AppDomain will share this list.
+ Therefore this method should only be used in runtime scenarios, not in design-time scenarios where the Razor
+ data structures for multiple files and projects may be shared within a single AppDomain.
+
+ The namespace to add to the global imports list.
+
+
+
+ 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 Could not determine the code language for "{0}"..
+
+
+
+
+ Looks up a localized string similar to Could not locate Razor Host Factory type: {0}.
+
+
+
+
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.dll b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.dll
new file mode 100644
index 0000000..f946454
Binary files /dev/null and b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.dll differ
diff --git a/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.xml b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.xml
new file mode 100644
index 0000000..bad0403
--- /dev/null
+++ b/packages/Microsoft.AspNet.WebPages.3.1.1/lib/net45/System.Web.WebPages.xml
@@ -0,0 +1,1039 @@
+
+
+
+ System.Web.WebPages
+
+
+
+
+ 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 Value cannot be null or an empty string..
+
+
+
+
+ Looks up a localized string similar to Value must be between {0} and {1}..
+
+
+
+
+ Looks up a localized string similar to Value must be a value from the "{0}" enumeration..
+
+
+
+
+ Looks up a localized string similar to Value must be greater than {0}..
+
+
+
+
+ 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 {0}..
+
+
+
+
+ Looks up a localized string similar to Value must be less than or equal to {0}..
+
+
+
+
+ Looks up a localized string similar to Value cannot be an empty string. It must either be null or a non-empty string..
+
+
+
+
+ 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.
+
+
+
+
+ Helper to provide empty instances with minimal allocation.
+
+
+
+
+ Returns a zero length array of type. Only allocates once per distinct type.
+
+
+
+
+ A class that inherits from Collection of T but also exposes its underlying data as List of T for performance.
+
+
+
+
+ Helpers for working with IO paths.
+
+
+
+
+ Returns whether the path has the specified file extension.
+
+
+
+
+ Expands a virtual path by replacing a leading "@" with the application part root
+ or combining it with the specified baseVirtualPath
+
+
+
+
+ Normalizes path relative to the current virtual path and throws if a file does not exist at the location.
+
+
+
+
+ The current BrowserOverrideStore is used to get and set the user agent of a request.
+ For an example see CookieBasedBrowserOverrideStore.
+
+
+
+
+ The current BrowserOverrideStore
+
+
+
+
+ BrowserOverrides can be used by BrowserHelpers to override the browser for a particular request.
+
+
+
+
+ Wraps the caching and instantiation of paths of the BuildManager.
+ In case of precompiled non-updateable sites, the only way to verify if a file exists is to call BuildManager.GetObjectFactory. However this method is less performant than
+ VirtualPathProvider.FileExists which is used for all other scenarios. In this class, we optimize for the first scenario by storing the results of GetObjectFactory for a
+ long duration.
+
+
+
+
+ Determines if a page exists in the website.
+ This method switches between a long duration cache or a short duration FileExistenceCache depending on whether the site is precompiled.
+ This is an optimization because BuildManager.GetObjectFactory is comparably slower than performing VirtualPathFactory.Exists
+
+
+
+
+ An app's is precompiled for our purposes if
+ (a) it has a PreCompiledApp.config file in the site root,
+ (b) The PreCompiledApp.config says that the app is not Updatable.
+
+
+ This code is based on System.Web.DynamicData.Misc.IsNonUpdatablePrecompiledAppNoCache (DynamicData)
+
+
+
+
+ Determines if a site exists in the VirtualPathProvider.
+ Results of hits are cached for a very short amount of time in the FileExistenceCache.
+
+
+
+
+ Determines if an ObjectFactory exists for the virtualPath.
+ The BuildManager complains if we pass in extensions that aren't registered for compilation. So we ensure that the virtual path is not
+ extensionless and that it is one of the extension
+
+
+
+
+ Determines if the extension is one of the extensions registered with WebPageHttpHandler.
+
+
+
+
+ Creates a reasonably unique key for a given virtual path by concatenating it with a Guid.
+
+
+
+
+ The default BrowserOverrideStore. Gets overridden user agent for a request from a cookie.
+ Creates a cookie to set the overridden user agent.
+
+
+
+
+ Creates the BrowserOverrideStore setting any browser override cookie to expire in 7 days.
+
+
+
+
+ Constructor to control the expiration of the browser override cookie.
+
+
+
+
+ Looks for a user agent by searching for the browser override cookie. If no cookie is found
+ returns null.
+
+
+
+
+ Adds a browser override cookie with the set user agent to the response of the current request.
+ If the user agent is null the browser override cookie is set to expire, otherwise its expiration is set
+ to daysToExpire, specified when CookieBasedOverrideStore is created.
+
+
+
+
+ DisplayInfo wraps the resolved file path and IDisplayMode for a request and path.
+ The returned IDisplayMode can be used to resolve other page elements for the request.
+
+
+
+
+ The Display Mode used to resolve a virtual path.
+
+
+
+
+ Resolved path of a file that exists.
+
+
+
+
+ Returns any IDisplayMode that can handle the given request.
+
+
+
+
+ Returns DisplayInfo from the first IDisplayMode in Modes that can handle the given request and locate the virtual path.
+ If currentDisplayMode is not null and RequireConsistentDisplayMode is set to true the search for DisplayInfo will only
+ start with the currentDisplayMode.
+
+
+
+
+ Restricts the search for Display Info to Display Modes either equal to or following the current
+ Display Mode in Modes. For example, a page being rendered in the Default Display Mode will not
+ display Mobile partial views in order to achieve a consistent look and feel.
+
+
+
+
+ All Display Modes that are available to handle a request.
+
+
+
+
+ Extension methods used to determine what browser a visitor wants to be seen as using.
+
+
+
+
+ Stock IE6 user agent string
+
+
+
+
+ Stock Windows Mobile 6.0 user agent string
+
+
+
+
+ Clears the set browser for the request. After clearing the browser the overridden browser will be the browser for the request.
+
+
+
+
+ Gets the overridden browser for the request based on the overridden user agent.
+ If no overridden user agent is set, returns the browser for the request.
+
+
+
+
+ Internal GetOverriddenBrowser overload to allow the browser creation function to changed. Defaults to CreateOverridenBrowser if createBrowser is null.
+
+
+
+
+ Gets the overridden user agent for the request. If no overridden user agent is set, returns the user agent for the request.
+
+
+
+
+ Gets a string that varies based upon the type of the browser. Can be used to override
+ System.Web.HttpApplication.GetVaryByCustomString to differentiate cache keys based on
+ the overridden browser.
+
+
+
+
+ Gets a string that varies based upon the type of the browser. Can be used to override
+ System.Web.HttpApplication.GetVaryByCustomString to differentiate cache keys based on
+ the overridden browser.
+
+
+
+
+ Sets the overridden user agent for the request using a BrowserOverride.
+
+
+
+
+ Sets the overridden user agent for the request using a string
+
+
+
+
+ Provides programmatic configuration for the anti-forgery token system.
+
+
+
+
+ Specifies an object that can provide additional data to put into all
+ generated tokens and that can validate additional data in incoming
+ tokens.
+
+
+
+
+ Specifies the name of the cookie that is used by the anti-forgery
+ system.
+
+
+ If an explicit name is not provided, the system will automatically
+ generate a name.
+
+
+
+
+ Specifies whether SSL is required for the anti-forgery system
+ to operate. If this setting is 'true' and a non-SSL request
+ comes into the system, all anti-forgery APIs will fail.
+
+
+
+
+ Specifies whether to suppress the generation of X-Frame-Options header
+ which is used to prevent ClickJacking. By default, the X-Frame-Options
+ header is generated with the value SAMEORIGIN. If this setting is 'true',
+ the X-Frame-Options header will not be generated for the response.
+
+
+
+
+ Specifies whether the anti-forgery system should skip checking
+ for conditions that might indicate misuse of the system. Please
+ use caution when setting this switch, as improper use could open
+ security holes in the application.
+
+
+ Setting this switch will disable several checks, including:
+ - Identity.IsAuthenticated = true without Identity.Name being set
+ - special-casing claims-based identities
+
+
+
+
+ If claims-based authorization is in use, specifies the claim
+ type from the identity that is used to uniquely identify the
+ user. If this property is set, all claims-based identities
+ must return unique values for this claim type.
+
+
+ If claims-based authorization is in use and this property has
+ not been set, the anti-forgery system will automatically look
+ for claim types "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"
+ and "http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider".
+
+
+
+
+ Allows providing or validating additional custom data for anti-forgery tokens.
+ For example, the developer could use this to supply a nonce when the token is
+ generated, then he could validate the nonce when the token is validated.
+
+
+ The anti-forgery system already embeds the client's username within the
+ generated tokens. This interface provides and consumes supplemental
+ data. If an incoming anti-forgery token contains supplemental data but no
+ additional data provider is configured, the supplemental data will not be
+ validated.
+
+
+
+
+ Provides additional data to be stored for the anti-forgery tokens generated
+ during this request.
+
+ Information about the current request.
+ Supplemental data to embed within the anti-forgery token.
+
+
+
+ Validates additional data that was embedded inside an incoming anti-forgery
+ token.
+
+ Information about the current request.
+ Supplemental data that was embedded within the token.
+ True if the data is valid; false if the data is invalid.
+
+
+
+ An interface that provides DisplayInfo for a virtual path and request. An IDisplayMode may modify the virtual path before checking
+ if it exists. CanHandleContext is called to determine if the Display Mode is available to return display info for the request.
+ GetDisplayInfo should return null if the virtual path does not exist. For an example implementation, see DefaultDisplayMode.
+ DisplayModeId is used to cache the non-null result of a call to GetDisplayInfo and should be unique for each Display Mode. See
+ DisplayModes for the built-in Display Modes and their ids.
+
+
+
+
+ The can take any suffix and determine if there is a corresponding
+ file that exists given a path and request by transforming the path to contain the suffix.
+ Add a new DefaultDisplayMode to the Modes collection to handle a new suffix or inherit from
+ DefaultDisplayMode to provide custom logic to transform paths with a suffix.
+
+
+
+
+ Returns DisplayInfo with the transformed path if it exists.
+
+
+
+
+ Transforms paths according to the following rules:
+ \some\path.blah\file.txt.zip -> \some\path.blah\file.txt.suffix.zip
+ \some\path.blah\file -> \some\path.blah\file.suffix
+
+
+
+
+ When set, the will only be available to return Display Info for a request
+ if the ContextCondition evaluates to true.
+
+
+
+
+ This class caches the result of VirtualPathProvider.FileExists for a short
+ period of time, and recomputes it if necessary.
+
+ The default VPP MapPathBasedVirtualPathProvider caches the result of
+ the FileExists call with the appropriate dependencies, so it is less
+ expensive on subsequent calls, but it still needs to do MapPath which can
+ take quite some time.
+
+
+
+
+ Provides access to the anti-forgery system, which provides protection against
+ Cross-site Request Forgery (XSRF, also called CSRF) attacks.
+
+
+
+
+ Generates an anti-forgery token for this request. This token can
+ be validated by calling the Validate() method.
+
+ An HTML string corresponding to an <input type="hidden">
+ element. This element should be put inside a <form>.
+
+ This method has a side effect: it may set a response cookie.
+
+
+
+
+ Generates an anti-forgery token pair (cookie and form token) for this request.
+ This method is similar to GetHtml(), but this method gives the caller control
+ over how to persist the returned values. To validate these tokens, call the
+ appropriate overload of Validate.
+
+ The anti-forgery token - if any - that already existed
+ for this request. May be null. The anti-forgery system will try to reuse this cookie
+ value when generating a matching form token.
+ Will contain a new cookie value if the old cookie token
+ was null or invalid. If this value is non-null when the method completes, the caller
+ must persist this value in the form of a response cookie, and the existing cookie value
+ should be discarded. If this value is null when the method completes, the existing
+ cookie value was valid and needn't be modified.
+ The value that should be stored in the <form>. The caller
+ should take care not to accidentally swap the cookie and form tokens.
+
+ Unlike the GetHtml() method, this method has no side effect. The caller
+ is responsible for setting the response cookie and injecting the returned
+ form token as appropriate.
+
+
+
+
+ Validates an anti-forgery token that was supplied for this request.
+ The anti-forgery token may be generated by calling GetHtml().
+
+
+ Throws an HttpAntiForgeryException if validation fails.
+
+
+
+
+ Validates an anti-forgery token pair that was generated by the GetTokens method.
+
+ The token that was supplied in the request cookie.
+ The token that was supplied in the request form body.
+
+ Throws an HttpAntiForgeryException if validation fails.
+
+
+
+
+ RequestBrowserOverrideStore simply returns the user agent of the current request.
+
+
+
+
+ Initializes a fast property helper. This constructor does not cache the helper.
+
+
+
+
+ Creates a single fast property setter. The result is not cached.
+
+ propertyInfo to extract the getter for.
+ a fast setter.
+ This method is more memory efficient than a dynamically compiled lambda, and about the same speed.
+
+
+
+ Creates and caches fast property helpers that expose getters for every public get property on the underlying type.
+
+ the instance to extract property accessors for.
+ a cached array of all public property getters from the underlying type of this instance.
+
+
+
+ Creates a single fast property getter. The result is not cached.
+
+ propertyInfo to extract the getter for.
+ a fast getter.
+ This method is more memory efficient than a dynamically compiled lambda, and about the same speed.
+
+
+
+ Given an object of anonymous type, add each property as a key and associated with its value to a dictionary.
+
+ This helper will cache accessors and types, and is intended when the anonymous object is accessed multiple
+ times throughout the lifetime of the web application.
+
+
+
+
+ Given an object of anonymous type, add each property as a key and associated with its value to a dictionary.
+
+ This helper will not cache accessors and types, and is intended when the anonymous object is accessed once
+ or very few times throughout the lifetime of the web application.
+
+
+
+
+ Given an object of anonymous type, add each property as a key and associated with its value to the given dictionary.
+
+
+
+ This code is copied from http://www.liensberger.it/web/blog/?p=191
+
+
+
+ Determines if a type is displayable as part of a Url path.
+
+
+ If a type is a displayable type, then we format values of that type as part of the Url Path. If not, then
+ we attempt to create a RouteValueDictionary, and encode the value as key-value pairs in the query string.
+
+ We determine if a type is displayable by whether or not it implements any interfaces. The built-in simple
+ types like Int32 implement IFormattable, which will be used to convert it to a string.
+
+ Primarily we do this check to allow anonymous types to represent key-value pairs (anonymous types don't
+ implement any interfaces).
+
+
+
+
+ Meant for unit tests that causes RequestFieldValidatorBase to basically ignore the unvalidated field requirement.
+
+
+
+
+ An interface that provides information about the current executing file.
+ WebPageRenderingBase implements this type so that all pages excluding AppStart pages could be queried to identify the
+ current executing file.
+
+
+
+
+ Wrapper class to be used by _pagestart.cshtml files to call into
+ the actual page.
+ Most of the properties and methods just delegate the call to ChildPage.XXX
+
+
+
+
+ Returns either the root-most init page, or the provided page itself if no init page is found
+
+
+
+
+ This is a wrapper around PageDataDictionary[[dynamic]] which allows dynamic
+ access (e.g. dict.Foo). Like PageDataDictionary, it returns null if the key is not found,
+ instead of throwing an exception.
+ This class is intended to be used as DynamicPageDataDictionary[[dynamic]]
+
+
+
+
+ Wraps HTML markup in an IHtmlString, which will enable HTML markup to be
+ rendered to the output without getting HTML encoded.
+
+ HTML markup string.
+ An IHtmlString that represents HTML markup.
+
+
+
+ Wraps HTML markup from the string representation of an object in an IHtmlString,
+ which will enable HTML markup to be rendered to the output without getting HTML encoded.
+
+ object with string representation as HTML markup
+ An IHtmlString that represents HTML markup.
+
+
+
+ Creates a dictionary of HTML attributes from the input object,
+ translating underscores to dashes.
+
+ new { data_name="value" } will translate to the entry { "data-name" , "value" }
+ in the resulting dictionary.
+
+
+ Anonymous object describing HTML attributes.
+ A dictionary that represents HTML attributes.
+
+
+
+ The application level storage context that uses a static dictionary as a backing store.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The base scope.
+
+ The dictionary to use as a storage. Since the dictionary would be used as-is, we expect the implementer to
+ use the same key-value comparison logic as we do here.
+
+
+
+
+ Custom comparer for the context dictionaries
+ The comparer treats strings as a special case, performing case insesitive comparison.
+ This guaratees that we remain consistent throughout the chain of contexts since PageData dictionary
+ behaves in this manner.
+
+
+
+
+ TemplateFileInfo specifies properties of a template such as VirtualPath.
+ This type allows us to modify the behavior of ITemplateFile between releases without changing the interface.
+
+
+
+
+ Template stacks store a stack of template files. WebPageExecutingBase implements this type, so when executing Plan9 or Mvc WebViewPage,
+ the stack would contain instances of the page.
+ The stack can be queried to identify properties of the current executing file such as the virtual path of the file.
+
+
+
+
+ Path.GetExtension performs a CheckInvalidPathChars(path) which blows up for paths that do not translate to valid physical paths but are valid paths in ASP.NET
+ This method is a near clone of Path.GetExtension without a call to CheckInvalidPathChars(path);
+
+
+
+
+ Determines true if the path is simply "MyPath", and not app-relative "~/MyPath" or absolute "/MyApp/MyPath" or relative "../Test/MyPath"
+
+ True if it is a not app-relative, absolute or relative.
+
+
+
+ This is a wrapper around Dictionary so that using PageData[key] returns null
+ if the key is not found, instead of throwing an exception.
+
+
+
+
+ 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 provided anti-forgery token failed a custom data check..
+
+
+
+
+ Looks up a localized string similar to The provided anti-forgery token was meant for a different claims-based user than the current user..
+
+
+
+
+ Looks up a localized string similar to The required anti-forgery cookie "{0}" is not present..
+
+
+
+
+ Looks up a localized string similar to The anti-forgery token could not be decrypted. If this application is hosted by a Web Farm or cluster, ensure that all machines are running the same version of ASP.NET Web Pages and that the <machineKey> configuration specifies explicit encryption and validation keys. AutoGenerate cannot be used in a cluster..
+
+
+
+
+ Looks up a localized string similar to The required anti-forgery form field "{0}" is not present..
+
+
+
+
+ Looks up a localized string similar to The anti-forgery cookie token and form field token do not match..
+
+
+
+
+ Looks up a localized string similar to Validation of the provided anti-forgery token failed. The cookie "{0}" and the form field "{1}" were swapped..
+
+
+
+
+ Looks up a localized string similar to The provided anti-forgery token was meant for user "{0}", but the current user is "{1}"..
+
+
+
+
+ Looks up a localized string similar to The anti-forgery system has the configuration value AntiForgeryConfig.RequireSsl = true, but the current request is not an SSL request..
+
+
+
+
+ Looks up a localized string similar to The assembly "{0}" is already registered..
+
+
+
+
+ Looks up a localized string similar to An application module is already registered for virtual path "{0}"..
+
+
+
+
+ Looks up a localized string similar to Unable to find an application module with the name "{0}"..
+
+
+
+
+ Looks up a localized string similar to The assembly "{0}" is not a registered application module..
+
+
+
+
+ Looks up a localized string similar to The resource file "{0}" could not be found..
+
+
+
+
+ Looks up a localized string similar to A claim of type '{0}' was not present on the provided ClaimsIdentity..
+
+
+
+
+ Looks up a localized string similar to A claim of type 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier' or 'http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider' was not present on the provided ClaimsIdentity. To enable anti-forgery token support with claims-based authentication, please verify that the configured claims provider is providing both of these claims on the ClaimsIdentity instances it generates. If the configured claims provider instead uses a different claim type as a unique identif [rest of string was truncated]";.
+
+
+
+
+ Looks up a localized string similar to Index length must be exactly one..
+
+
+
+
+ Looks up a localized string similar to Index must be of type string or int when getting a value..
+
+
+
+
+ Looks up a localized string similar to Index must be of type string when setting a value..
+
+
+
+
+ Looks up a localized string similar to The parameter conversion from type "{0}" to type "{1}" failed. See the inner exception for more information..
+
+
+
+
+ Looks up a localized string similar to The parameter conversion from type "{0}" to type "{1}" failed because no type converter can convert between these types..
+
+
+
+
+ Looks up a localized string similar to An HttpContext is required to perform this operation. Check that this operation is being performed during a web request..
+
+
+
+
+ Looks up a localized string similar to Value "{0}" specified in "{1}" is an invalid value for the SessionState directive. Possible values are: "{2}"..
+
+
+
+
+ Looks up a localized string similar to At most one SessionState value can be declared per page..
+
+
+
+
+ Looks up a localized string similar to RequestScope cannot be created when _AppStart is executing..
+
+
+
+
+ Looks up a localized string similar to Storage scope is read only..
+
+
+
+
+ Looks up a localized string similar to Storage scopes cannot be created when _AppStart is executing..
+
+
+
+
+ Looks up a localized string similar to The provided identity of type '{0}' is marked IsAuthenticated = true but does not have a value for Name. By default, the anti-forgery system requires that all authenticated identities have a unique Name. If it is not possible to provide a unique Name for this identity, consider setting the static property AntiForgeryConfig.AdditionalDataProvider to an instance of a type that can provide some form of unique identifier for the current user..
+
+
+
+
+ Looks up a localized string similar to Validation parameter names in unobtrusive client validation rules cannot be empty. Client rule type: {0}.
+
+
+
+
+ Looks up a localized string similar to Validation parameter names in unobtrusive client validation rules must start with a lowercase letter and consist of only lowercase letters or digits. Validation parameter name: {0}, client rule type: {1}.
+
+
+
+
+ Looks up a localized string similar to Validation type names in unobtrusive client validation rules cannot be empty. Client rule type: {0}.
+
+
+
+
+ Looks up a localized string similar to Validation type names in unobtrusive client validation rules must consist of only lowercase letters. Invalid name: "{0}", client rule type: {1}.
+
+
+
+
+ Looks up a localized string similar to Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: {0}.
+
+
+
+
+ Looks up a localized string similar to The UrlData collection is read-only..
+
+
+
+
+ Looks up a localized string similar to Input format is invalid..
+
+
+
+
+ Looks up a localized string similar to Values do not match..
+
+
+
+
+ Looks up a localized string similar to Value must be a decimal between {0} and {1}..
+
+
+
+
+ Looks up a localized string similar to Value must be an integer between {0} and {1}..
+
+
+
+
+ Looks up a localized string similar to Value is invalid..
+
+
+
+
+ Looks up a localized string similar to This field is required..
+
+
+
+
+ Looks up a localized string similar to Max length: {0}..
+
+
+
+
+ Looks up a localized string similar to String must be between {0} and {1} characters..
+
+
+
+
+ Looks up a localized string similar to The file "{0}" cannot be requested directly because it calls the "{1}" method..
+
+
+
+
+ Looks up a localized string similar to The following file could not be rendered because its extension "{0}" might not be supported: "{1}"..
+
+
+
+
+ Looks up a localized string similar to The file "{0}" could not be rendered, because it does not exist or is not a valid page..
+
+
+
+
+ Looks up a localized string similar to The layout page "{0}" could not be found at the following path: "{1}"..
+
+
+
+
+ Looks up a localized string similar to The "RenderBody" method has already been called..
+
+
+
+
+ Looks up a localized string similar to The "RenderBody" method has not been called for layout page "{0}"..
+
+
+
+
+ Looks up a localized string similar to Section already defined: "{0}"..
+
+
+
+
+ Looks up a localized string similar to The "RenderSection" method has already been called for the section named "{0}"..
+
+
+
+
+ Looks up a localized string similar to Section not defined: "{0}"..
+
+
+
+
+ Looks up a localized string similar to The following sections have been defined but have not been rendered for the layout page "{0}": "{1}"..
+
+
+
+
+ Looks up a localized string similar to Files with leading underscores ("_") cannot be served..
+
+
+
+
+ Attempts to create a WebPageBase instance from a virtualPath and wraps complex compiler exceptions with simpler messages
+
+
+
+
diff --git a/packages/Microsoft.Web.Infrastructure.1.0.0.0/.signature.p7s b/packages/Microsoft.Web.Infrastructure.1.0.0.0/.signature.p7s
new file mode 100644
index 0000000..b49f087
Binary files /dev/null and b/packages/Microsoft.Web.Infrastructure.1.0.0.0/.signature.p7s differ
diff --git a/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg b/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg
new file mode 100644
index 0000000..cd8aa39
Binary files /dev/null and b/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg differ
diff --git a/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll b/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll
new file mode 100644
index 0000000..85f1138
Binary files /dev/null and b/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/.signature.p7s b/packages/Newtonsoft.Json.7.0.1/.signature.p7s
new file mode 100644
index 0000000..04bdf77
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/.signature.p7s differ
diff --git a/packages/Newtonsoft.Json.7.0.1/Newtonsoft.Json.7.0.1.nupkg b/packages/Newtonsoft.Json.7.0.1/Newtonsoft.Json.7.0.1.nupkg
new file mode 100644
index 0000000..f876403
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/Newtonsoft.Json.7.0.1.nupkg differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.dll
new file mode 100644
index 0000000..71c489a
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.xml
new file mode 100644
index 0000000..68804ee
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/lib/net20/Newtonsoft.Json.xml
@@ -0,0 +1,9439 @@
+
+
+
+ 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 token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ A null value can be passed to the method for token's that don't have a value, e.g. .
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+
+
+
+
+ Instructs the to always serialize the member, and require the member has a value.
+
+
+
+
+ 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.
+
+
+
+
+ Provides methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors 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 .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ 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.
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+ Parameter list to use when constructing the JsonConverter. Can be null.
+
+
+
+ Gets the of the converter.
+
+ The of the converter.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ConverterType.
+ If null, the default constructor is used.
+
+
+
+
+ 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 equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+ The string delimiter character.
+ The string escape handling.
+ 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 the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, the ancestors of every token 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, and the descendants of every token 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 token 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 token 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 token 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 token 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 token 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 token 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 .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An containing this token, and all 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.
+
+
+
+
+ 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 at the reader's current position.
+
+
+
+
+ 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 at the writer's current position.
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ Returns detailed information about the schema exception.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 improve performance with multiple resolver instances because expensive reflection will only
+ happen once. This setting can 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.
+ Resolved name of the property.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ 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 or sets the dictionary key resolver.
+
+ The dictionary key 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 for this property.
+
+ The for this property.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+
+ Lookup and create an instance of the JsonConverter type described by the argument.
+
+ The JsonConverter type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ Create a factory function that can be used to create instances of a JsonConverter described by the
+ argument type. The returned function can then be used to either invoke the converter's default ctor, or any
+ parameterized constructors by way of an object array.
+
+
+
+
+ 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{TSource}.
+
+ 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.
+
+
+
+
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.dll
new file mode 100644
index 0000000..5e8eb8e
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.xml
new file mode 100644
index 0000000..82fa7f0
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/lib/net35/Newtonsoft.Json.xml
@@ -0,0 +1,8582 @@
+
+
+
+ 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 token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ A null value can be passed to the method for token's that don't have a value, e.g. .
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+
+
+
+
+ Instructs the to always serialize the member, and require the member has a value.
+
+
+
+
+ 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.
+
+
+
+
+ Provides methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors 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 .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ 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.
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+ Parameter list to use when constructing the JsonConverter. Can be null.
+
+
+
+ Gets the of the converter.
+
+ The of the converter.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ConverterType.
+ If null, the default constructor is used.
+
+
+
+
+ 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 equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+ The string delimiter character.
+ The string escape handling.
+ 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 the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, the ancestors of every token 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, and the descendants of every token 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 token 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 token 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 token 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 token 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 token 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 token 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 .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An containing this token, and all 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.
+
+
+
+
+ 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 at the reader's current position.
+
+
+
+
+ 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 at the writer's current position.
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ Returns detailed information about the schema exception.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 improve performance with multiple resolver instances because expensive reflection will only
+ happen once. This setting can 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.
+ Resolved name of the property.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ 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 or sets the dictionary key resolver.
+
+ The dictionary key 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 for this property.
+
+ The for this property.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+
+ Lookup and create an instance of the JsonConverter type described by the argument.
+
+ The JsonConverter type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ Create a factory function that can be used to create instances of a JsonConverter described by the
+ argument type. The returned function can then be used to either invoke the converter's default ctor, or any
+ parameterized constructors by way of an object array.
+
+
+
+
+ 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{TSource}.
+
+ 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.
+
+
+
+
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.dll
new file mode 100644
index 0000000..ae725c4
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.xml
new file mode 100644
index 0000000..679c7c6
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/lib/net40/Newtonsoft.Json.xml
@@ -0,0 +1,8889 @@
+
+
+
+ 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 token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ A null value can be passed to the method for token's that don't have a value, e.g. .
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+
+
+
+
+ Instructs the to always serialize the member, and require the member has a value.
+
+
+
+
+ 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.
+
+
+
+ Provides methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors 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 .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ 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.
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+ Parameter list to use when constructing the JsonConverter. Can be null.
+
+
+
+ Gets the of the converter.
+
+ The of the converter.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ConverterType.
+ If null, the default constructor is used.
+
+
+
+
+ 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 equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+ The string delimiter character.
+ The string escape handling.
+ 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 the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, the ancestors of every token 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, and the descendants of every token 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 token 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 token 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 token 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 token 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 token 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 token 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 .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An containing this token, and all 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.
+
+
+
+
+ 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 at the reader's current position.
+
+
+
+
+ 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 at the writer's current position.
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ Returns detailed information about the schema exception.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 improve performance with multiple resolver instances because expensive reflection will only
+ happen once. This setting can 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.
+ Resolved name of the property.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ 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 or sets the dictionary key resolver.
+
+ The dictionary key 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 for this property.
+
+ The for this property.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+
+ Lookup and create an instance of the JsonConverter type described by the argument.
+
+ The JsonConverter type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ Create a factory function that can be used to create instances of a JsonConverter described by the
+ argument type. The returned function can then be used to either invoke the converter's default ctor, or any
+ parameterized constructors by way of an object array.
+
+
+
+
+ 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{TSource}.
+
+ 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.
+
+
+
+
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.dll
new file mode 100644
index 0000000..d4c9037
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.xml
new file mode 100644
index 0000000..246ae3b
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/lib/net45/Newtonsoft.Json.xml
@@ -0,0 +1,8889 @@
+
+
+
+ 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 token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ A null value can be passed to the method for token's that don't have a value, e.g. .
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+ The string delimiter character.
+ The string escape handling.
+ 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.
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+ Parameter list to use when constructing the JsonConverter. Can be null.
+
+
+
+ Gets the of the converter.
+
+ The of the converter.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ConverterType.
+ If null, the default constructor is used.
+
+
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+
+
+
+ Instructs the to always serialize the member, and require the member has a value.
+
+
+
+
+ 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 the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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 equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, the ancestors of every token 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, and the descendants of every token 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 token 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 token 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 token 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 token 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 token 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 token 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 tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors 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 .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ 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 .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An containing this token, and all 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.
+
+
+
+
+ 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 at the reader's current position.
+
+
+
+
+ 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 at the writer's current position.
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ An in-memory representation of a JSON Schema.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 improve performance with multiple resolver instances because expensive reflection will only
+ happen once. This setting can 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.
+ Resolved name of the property.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ 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.
+
+
+
+ Provides methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 or sets the dictionary key resolver.
+
+ The dictionary key 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 for this property.
+
+ The for this property.
+
+
+
+ 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.
+
+
+
+ Lookup and create an instance of the JsonConverter type described by the argument.
+
+ The JsonConverter type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ Create a factory function that can be used to create instances of a JsonConverter described by the
+ argument type. The returned function can then be used to either invoke the converter's default ctor, or any
+ parameterized constructors by way of an object array.
+
+
+
+
+ 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.
+
+
+
+
+ Provides methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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{TSource}.
+
+ 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.
+
+
+
+
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll
new file mode 100644
index 0000000..f2e197e
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml
new file mode 100644
index 0000000..89a411f
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml
@@ -0,0 +1,8067 @@
+
+
+
+ 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 token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ A null value can be passed to the method for token's that don't have a value, e.g. .
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+ The string delimiter character.
+ The string escape handling.
+ 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.
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+ Parameter list to use when constructing the JsonConverter. Can be null.
+
+
+
+ Gets the of the converter.
+
+ The of the converter.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ConverterType.
+ If null, the default constructor is used.
+
+
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+
+
+
+ Instructs the to always serialize the member, and require the member has a value.
+
+
+
+
+ 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 the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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 equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, the ancestors of every token 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, and the descendants of every token 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 token 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 token 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 token 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 token 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 token 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 token 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 tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors 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 .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ 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 .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An containing this token, and all 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.
+
+
+
+
+ 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 at the reader's current position.
+
+
+
+
+ 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 at the writer's current position.
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ An in-memory representation of a JSON Schema.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 improve performance with multiple resolver instances because expensive reflection will only
+ happen once. This setting can 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.
+ Resolved name of the property.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ 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.
+
+
+
+ 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 methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 or sets the dictionary key resolver.
+
+ The dictionary key 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 for this property.
+
+ The for this property.
+
+
+
+ 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.
+
+
+
+ Lookup and create an instance of the JsonConverter type described by the argument.
+
+ The JsonConverter type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ Create a factory function that can be used to create instances of a JsonConverter described by the
+ argument type. The returned function can then be used to either invoke the converter's default ctor, or any
+ parameterized constructors by way of an object array.
+
+
+
+
+ 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.
+
+
+
+
+ Provides methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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{TSource}.
+
+ 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.
+
+
+
+
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll b/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll
new file mode 100644
index 0000000..89bc2b8
Binary files /dev/null and b/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll differ
diff --git a/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml b/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml
new file mode 100644
index 0000000..e80be62
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml
@@ -0,0 +1,8414 @@
+
+
+
+ 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 token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ A null value can be passed to the method for token's that don't have a value, e.g. .
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+ The string delimiter character.
+ The string escape handling.
+ 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.
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+ Parameter list to use when constructing the JsonConverter. Can be null.
+
+
+
+ Gets the of the converter.
+
+ The of the converter.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ConverterType.
+ If null, the default constructor is used.
+
+
+
+
+ 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.
+
+
+
+ The parameter list to use when constructing the JsonConverter described by ItemConverterType.
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
+ order, and type of these parameters.
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+ 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.
+
+
+
+ Instructs the to always serialize the member, and require the member has a value.
+
+
+
+
+ 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 the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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 equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ 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 formatted when writing JSON text, and the expected date format when reading 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, the ancestors of every token 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 token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and 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 every token in the source collection, and the descendants of every token 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 token 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 token 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 token 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 token 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 token 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 token 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 tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors 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 .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ 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 .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An containing this token, and all 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.
+
+
+
+
+ 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 at the reader's current position.
+
+
+
+
+ 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 at the writer's current position.
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ An in-memory representation of a JSON Schema.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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.
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 .
+
+
+ JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ 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 improve performance with multiple resolver instances because expensive reflection will only
+ happen once. This setting can 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.
+ Resolved name of the property.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ 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.
+
+
+
+ Provides methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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 or sets the dictionary key resolver.
+
+ The dictionary key 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 for this property.
+
+ The for this property.
+
+
+
+ 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.
+
+
+
+ Lookup and create an instance of the JsonConverter type described by the argument.
+
+ The JsonConverter type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ Create a factory function that can be used to create instances of a JsonConverter described by the
+ argument type. The returned function can then be used to either invoke the converter's default ctor, or any
+ parameterized constructors by way of an object array.
+
+
+
+
+ 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.
+
+
+
+
+ Provides methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ 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{TSource}.
+
+ 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.
+
+
+
+
diff --git a/packages/Newtonsoft.Json.7.0.1/tools/install.ps1 b/packages/Newtonsoft.Json.7.0.1/tools/install.ps1
new file mode 100644
index 0000000..3715c2d
--- /dev/null
+++ b/packages/Newtonsoft.Json.7.0.1/tools/install.ps1
@@ -0,0 +1,112 @@
+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://www.newtonsoft.com/json/install?version=" + $package.Version
+ $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
+{
+ try
+ {
+ $pmPane = $dte2.ToolWindows.OutputWindow.OutputWindowPanes.Item("Package Manager")
+
+ $selection = $pmPane.TextDocument.Selection
+ $selection.StartOfDocument($false)
+ $selection.EndOfDocument($true)
+
+ if ($selection.Text.StartsWith("Attempting to gather dependencies information for package 'Newtonsoft.Json." + $package.Version + "'"))
+ {
+ $dte2.ItemOperations.Navigate($url) | Out-Null
+ }
+ }
+ catch
+ {
+ # stop potential errors from bubbling up
+ # worst case the splash page won't open
+ }
+}
+
+# still yolo
\ No newline at end of file
diff --git a/web.config b/web.config
index 21c9320..753c718 100755
--- a/web.config
+++ b/web.config
@@ -11,7 +11,7 @@
-
+
|