2008-08-26 05:18:10 +04:00
< html >
< head >
< title > YamlDotNet.Core.Events.MappingStart< / title >
2010-06-01 02:07:42 +04:00
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" / >
2008-08-26 05:18:10 +04:00
< style >
2010-06-01 02:07:42 +04:00
a { text-decoration: none }
2008-08-26 05:18:10 +04:00
2010-06-01 02:07:42 +04:00
div.SideBar {
padding-left: 1em;
padding-right: 1em;
right: 0;
float: right;
border: thin solid black;
background-color: #f2f2f2;
}
.CollectionTitle { font-weight: bold }
.PageTitle { font-size: 150%; font-weight: bold }
2008-08-26 05:18:10 +04:00
2010-06-01 02:07:42 +04:00
.Summary { }
.Signature { }
.Remarks { }
.Members { }
.Copyright { }
.Section { font-size: 125%; font-weight: bold }
p.Summary {
margin-left: 1em;
}
.SectionBox { margin-left: 2em }
.NamespaceName { font-size: 105%; font-weight: bold }
.NamespaceSumary { }
.MemberName { font-size: 115%; font-weight: bold; margin-top: 1em }
.Subsection { font-size: 105%; font-weight: bold }
.SubsectionBox { margin-left: 2em; margin-bottom: 1em }
.CodeExampleTable { background-color: #f5f5dd; border: thin solid black; padding: .25em; }
.TypesListing {
border-collapse: collapse;
}
td {
vertical-align: top;
}
th {
text-align: left;
}
.TypesListing td {
margin: 0px;
padding: .25em;
border: solid gray 1px;
}
.TypesListing th {
margin: 0px;
padding: .25em;
background-color: #f2f2f2;
border: solid gray 1px;
}
div.Footer {
border-top: 1px solid gray;
margin-top: 1.5em;
padding-top: 0.6em;
text-align: center;
color: gray;
}
span.NotEntered /* Documentation for this section has not yet been entered */ {
font-style: italic;
color: red;
}
div.Header {
background: #B0C4DE;
border: double;
border-color: white;
border-width: 7px;
padding: 0.5em;
}
div.Header * {
font-size: smaller;
}
div.Note {
}
i.ParamRef {
}
i.subtitle {
}
ul.TypeMembersIndex {
text-align: left;
background: #F8F8F8;
}
ul.TypeMembersIndex li {
display: inline;
margin: 0.5em;
}
table.HeaderTable {
}
table.SignatureTable {
}
table.Documentation, table.Enumeration, table.TypeDocumentation {
border-collapse: collapse;
width: 100%;
}
table.Documentation tr th, table.TypeMembers tr th, table.Enumeration tr th, table.TypeDocumentation tr th {
background: whitesmoke;
padding: 0.8em;
border: 1px solid gray;
text-align: left;
vertical-align: bottom;
}
table.Documentation tr td, table.TypeMembers tr td, table.Enumeration tr td, table.TypeDocumentation tr td {
padding: 0.5em;
border: 1px solid gray;
text-align: left;
vertical-align: top;
}
table.TypeMembers {
border: 1px solid #C0C0C0;
width: 100%;
}
table.TypeMembers tr td {
background: #F8F8F8;
border: white;
}
table.Documentation {
}
table.TypeMembers {
}
div.CodeExample {
width: 100%;
border: 1px solid #DDDDDD;
background-color: #F8F8F8;
}
div.CodeExample p {
margin: 0.5em;
border-bottom: 1px solid #DDDDDD;
}
div.CodeExample div {
margin: 0.5em;
}
h4 {
margin-bottom: 0;
}
div.Signature {
border: 1px solid #C0C0C0;
background: #F2F2F2;
padding: 1em;
}
< / style >
< script type = "text/JavaScript" >
function toggle_display (block) {
var w = document.getElementById (block);
var t = document.getElementById (block + ":toggle");
if (w.style.display == "none") {
w.style.display = "block";
t.innerHTML = "⊟";
} else {
w.style.display = "none";
t.innerHTML = "⊞";
}
}
< / script >
2008-08-26 05:18:10 +04:00
< / head >
< body >
< div class = "CollectionTitle" >
2010-06-01 02:07:42 +04:00
< a href = "../index.html" > YamlDotNet.Core< / a > : < a href = "index.html" > YamlDotNet.Core.Events Namespace< / a > < / div >
< div class = "SideBar" >
< p >
< a href = "#T:YamlDotNet.Core.Events.MappingStart" > Overview< / a >
< / p >
< p >
< a href = "#T:YamlDotNet.Core.Events.MappingStart:Signature" > Signature< / a >
< / p >
< p >
< a href = "#T:YamlDotNet.Core.Events.MappingStart:Docs" > Remarks< / a >
< / p >
< p >
< a href = "#Members" > Members< / a >
< / p >
< p >
< a href = "#T:YamlDotNet.Core.Events.MappingStart:Members" > Member Details< / a >
< / p >
< / div >
< h1 class = "PageTitle" id = "T:YamlDotNet.Core.Events.MappingStart" > MappingStart Class< / h1 >
< p class = "Summary" id = "T:YamlDotNet.Core.Events.MappingStart:Summary" >
2008-08-26 05:18:10 +04:00
Represents a mapping start event.
< / p >
2010-06-01 02:07:42 +04:00
< div id = "T:YamlDotNet.Core.Events.MappingStart:Signature" >
< div class = "Signature" > public class < b > MappingStart< / b > : < a href = "../YamlDotNet.Core.Events/NodeEvent.html" > NodeEvent< / a > , < a href = "../YamlDotNet.Core.Events/IMappingStart.html" > IMappingStart< / a > < / div >
2008-08-26 05:18:10 +04:00
< / div >
2010-06-01 02:07:42 +04:00
< div class = "Remarks" id = "T:YamlDotNet.Core.Events.MappingStart:Docs" >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('T:YamlDotNet.Core.Events.MappingStart:Docs:Remarks')" >
< span id = "T:YamlDotNet.Core.Events.MappingStart:Docs:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "T:YamlDotNet.Core.Events.MappingStart:Docs:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('T:YamlDotNet.Core.Events.MappingStart:Docs:Version Information')" >
< span id = "T:YamlDotNet.Core.Events.MappingStart:Docs:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "T:YamlDotNet.Core.Events.MappingStart:Docs:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< h2 class = "Section" id = "Members" >
< a href = "javascript:toggle_display('_Members')" >
< span id = "_Members:toggle" > ⊟< / span > Members< / a >
< / h2 >
< blockquote class = "SectionBox" id = "_Members" >
2008-08-26 05:18:10 +04:00
< p >
2010-06-01 02:07:42 +04:00
See Also: Inherited members from
< a href = "../YamlDotNet.Core.Events/NodeEvent.html" > NodeEvent< / a > .
< / p >
< h3 >
< a href = "javascript:toggle_display('Public Constructors')" >
< span id = "Public Constructors:toggle" > ⊟< / span > Public Constructors< / a >
< / h3 >
< blockquote id = "Public Constructors" >
< div class = "SubsectionBox" >
< table class = "TypeMembers" >
< tr valign = "top" >
< td >
< div >
< / div >
< / td >
< td >
< div >
< b >
< a href = "#C:YamlDotNet.Core.Events.MappingStart" > MappingStart< / a >
< / b > ()< / div >
< / td >
< td >
2008-11-06 01:34:52 +03:00
Initializes a new instance of the < a href = "../YamlDotNet.Core.Events/MappingStart.html" > YamlDotNet.Core.Events.MappingStart< / a > class.
< / td >
2010-06-01 02:07:42 +04:00
< / tr >
< tr valign = "top" >
< td >
< div >
< / div >
< / td >
< td >
< div >
< b >
< a href = "#C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle)" > MappingStart< / a >
< / b > (< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > , < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > , < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a > , < a href = "../YamlDotNet.Core.Events/MappingStyle.html" > MappingStyle< / a > )< / div >
< / td >
< td >
2008-08-26 05:18:10 +04:00
Initializes a new instance of the < a href = "../YamlDotNet.Core.Events/MappingStart.html" > YamlDotNet.Core.Events.MappingStart< / a > class.
< / td >
2010-06-01 02:07:42 +04:00
< / tr >
< tr valign = "top" >
< td >
< div >
< / div >
< / td >
< td >
< div >
< b >
< a href = "#C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)" > MappingStart< / a >
< / b > (< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > , < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > , < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a > , < a href = "../YamlDotNet.Core.Events/MappingStyle.html" > MappingStyle< / a > , < a href = "../YamlDotNet.Core/Mark.html" > YamlDotNet.Core.Mark< / a > , < a href = "../YamlDotNet.Core/Mark.html" > YamlDotNet.Core.Mark< / a > )< / div >
< / td >
< td >
2008-08-26 05:18:10 +04:00
Initializes a new instance of the < a href = "../YamlDotNet.Core.Events/MappingStart.html" > YamlDotNet.Core.Events.MappingStart< / a > class.
< / td >
2010-06-01 02:07:42 +04:00
< / tr >
< / table >
< / div >
< / blockquote >
< h3 >
< a href = "javascript:toggle_display('Public Properties')" >
< span id = "Public Properties:toggle" > ⊟< / span > Public Properties< / a >
< / h3 >
< blockquote id = "Public Properties" >
< div class = "SubsectionBox" >
< table class = "TypeMembers" >
< tr valign = "top" >
< td > [read-only]< div > override < / div > < / td >
< td >
< b >
< a href = "#P:YamlDotNet.Core.Events.MappingStart.IsCanonical" > IsCanonical< / a >
< / b >
< / td >
< td >
< i >
< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a >
< / i > .
Gets a value indicating whether this instance is canonical.
< / td >
< / tr >
< tr valign = "top" >
< td > [read-only]< div > < / div > < / td >
< td >
< b >
< a href = "#P:YamlDotNet.Core.Events.MappingStart.IsImplicit" > IsImplicit< / a >
< / b >
< / td >
< td >
< i >
< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a >
< / i > .
2008-08-26 05:18:10 +04:00
Gets a value indicating whether this instance is implicit.
< / td >
2010-06-01 02:07:42 +04:00
< / tr >
< tr valign = "top" >
< td > [read-only]< div > override < / div > < / td >
< td >
< b >
< a href = "#P:YamlDotNet.Core.Events.MappingStart.NestingIncrease" > NestingIncrease< / a >
< / b >
< / td >
< td >
< i >
< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32" > int< / a >
< / i > .
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
< / td >
< / tr >
< tr valign = "top" >
< td > [read-only]< div > < / div > < / td >
< td >
< b >
< a href = "#P:YamlDotNet.Core.Events.MappingStart.Style" > Style< / a >
< / b >
< / td >
< td >
< i >
< a href = "../YamlDotNet.Core.Events/MappingStyle.html" > MappingStyle< / a >
< / i > .
2008-08-26 05:18:10 +04:00
Gets the style of the mapping.
< / td >
2010-06-01 02:07:42 +04:00
< / tr >
< / table >
< / div >
< / blockquote >
< h3 >
< a href = "javascript:toggle_display('Public Methods')" >
< span id = "Public Methods:toggle" > ⊟< / span > Public Methods< / a >
< / h3 >
< blockquote id = "Public Methods" >
< div class = "SubsectionBox" >
< table class = "TypeMembers" >
< tr valign = "top" >
< td >
< div > override < / div >
< / td >
< td colspan = "2" >
< b >
< a href = "#M:YamlDotNet.Core.Events.MappingStart.ToString" > ToString< / a >
< / b > ()< nobr > : < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > < / nobr > < blockquote >
Returns a < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > that represents the current < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object" > object< / a > .
< / blockquote > < / td >
< / tr >
< / table >
< / div >
< / blockquote >
< / blockquote >
2008-08-26 05:18:10 +04:00
< / div >
2010-06-01 02:07:42 +04:00
< div class = "Members" id = "T:YamlDotNet.Core.Events.MappingStart:Members" >
< h2 class = "Section" id = "MemberDetails" >
< a href = "javascript:toggle_display('_MemberDetails')" >
< span id = "_MemberDetails:toggle" > ⊟< / span > Member Details< / a >
< / h2 >
< blockquote class = "SectionBox" id = "_MemberDetails" >
< h3 id = "C:YamlDotNet.Core.Events.MappingStart" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart:member')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart:member:toggle" > ⊟< / span > MappingStart Constructor< / a >
< / h3 >
< blockquote id = "C:YamlDotNet.Core.Events.MappingStart:member" >
< p class = "Summary" >
2008-11-06 01:34:52 +03:00
Initializes a new instance of the < a href = "../YamlDotNet.Core.Events/MappingStart.html" > YamlDotNet.Core.Events.MappingStart< / a > class.
< / p >
2010-06-01 02:07:42 +04:00
< div class = "Signature" > public < b > MappingStart< / b > ()< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart:Remarks')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart:Version Information')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle)" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):member')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):member:toggle" > ⊟< / span > MappingStart Constructor< / a >
< / h3 >
< blockquote id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):member" >
< p class = "Summary" >
2008-08-26 05:18:10 +04:00
Initializes a new instance of the < a href = "../YamlDotNet.Core.Events/MappingStart.html" > YamlDotNet.Core.Events.MappingStart< / a > class.
< / p >
2010-06-01 02:07:42 +04:00
< div class = "Signature" > public < b > MappingStart< / b > (< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > anchor, < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > tag, < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a > isImplicit, < a href = "../YamlDotNet.Core.Events/MappingStyle.html" > MappingStyle< / a > style)< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Parameters')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Parameters:toggle" > ⊟< / span > Parameters< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Parameters" >
2008-08-26 05:18:10 +04:00
< dl >
< dt >
< i > anchor< / i >
< / dt >
< dd > The anchor.< / dd >
< dt >
< i > tag< / i >
< / dt >
< dd > The tag.< / dd >
< dt >
< i > isImplicit< / i >
< / dt >
< dd > Indicates whether the event is implicit.< / dd >
< dt >
< i > style< / i >
< / dt >
< dd > The style of the mapping.< / dd >
< / dl >
2010-06-01 02:07:42 +04:00
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Remarks')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Version Information')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle):Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):member')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):member:toggle" > ⊟< / span > MappingStart Constructor< / a >
< / h3 >
< blockquote id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):member" >
< p class = "Summary" >
2008-08-26 05:18:10 +04:00
Initializes a new instance of the < a href = "../YamlDotNet.Core.Events/MappingStart.html" > YamlDotNet.Core.Events.MappingStart< / a > class.
< / p >
2010-06-01 02:07:42 +04:00
< div class = "Signature" > public < b > MappingStart< / b > (< a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > anchor, < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > tag, < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a > isImplicit, < a href = "../YamlDotNet.Core.Events/MappingStyle.html" > MappingStyle< / a > style, < a href = "../YamlDotNet.Core/Mark.html" > YamlDotNet.Core.Mark< / a > start, < a href = "../YamlDotNet.Core/Mark.html" > YamlDotNet.Core.Mark< / a > end)< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Parameters')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Parameters:toggle" > ⊟< / span > Parameters< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Parameters" >
2008-08-26 05:18:10 +04:00
< dl >
< dt >
< i > anchor< / i >
< / dt >
< dd > The anchor.< / dd >
< dt >
< i > tag< / i >
< / dt >
< dd > The tag.< / dd >
< dt >
< i > isImplicit< / i >
< / dt >
< dd > Indicates whether the event is implicit.< / dd >
< dt >
< i > style< / i >
< / dt >
< dd > The style of the mapping.< / dd >
< dt >
< i > start< / i >
< / dt >
< dd > The start position of the event.< / dd >
< dt >
< i > end< / i >
< / dt >
< dd > The end position of the event.< / dd >
< / dl >
2010-06-01 02:07:42 +04:00
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Remarks')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Version Information')" >
< span id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "C:YamlDotNet.Core.Events.MappingStart(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark):Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsCanonical:member')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:member:toggle" > ⊟< / span > IsCanonical Property< / a >
< / h3 >
< blockquote id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:member" >
< p class = "Summary" >
Gets a value indicating whether this instance is canonical.
< / p >
< div class = "Signature" > public override < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a > < b > IsCanonical< / b > { get; }< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Value')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Value:toggle" > ⊟< / span > Value< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Value" >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Remarks')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Version Information')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.IsCanonical:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsImplicit:member')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:member:toggle" > ⊟< / span > IsImplicit Property< / a >
< / h3 >
< blockquote id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:member" >
< p class = "Summary" >
2008-08-26 05:18:10 +04:00
Gets a value indicating whether this instance is implicit.
< / p >
2010-06-01 02:07:42 +04:00
< div class = "Signature" > public < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Boolean" > bool< / a > < b > IsImplicit< / b > { get; }< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Value')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Value:toggle" > ⊟< / span > Value< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Value" >
< tt > true< / tt > if this instance is implicit; otherwise, < tt > false< / tt > .
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Remarks')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Version Information')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.IsImplicit:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:member')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:member:toggle" > ⊟< / span > NestingIncrease Property< / a >
< / h3 >
< blockquote id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:member" >
< p class = "Summary" >
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
< / p >
< div class = "Signature" > public override < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Int32" > int< / a > < b > NestingIncrease< / b > { get; }< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Value')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Value:toggle" > ⊟< / span > Value< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Value" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Remarks')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Version Information')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.NestingIncrease:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "P:YamlDotNet.Core.Events.MappingStart.Style" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.Style:member')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.Style:member:toggle" > ⊟< / span > Style Property< / a >
< / h3 >
< blockquote id = "P:YamlDotNet.Core.Events.MappingStart.Style:member" >
< p class = "Summary" >
2008-08-26 05:18:10 +04:00
Gets the style of the mapping.
< / p >
2010-06-01 02:07:42 +04:00
< div class = "Signature" > public < a href = "../YamlDotNet.Core.Events/MappingStyle.html" > MappingStyle< / a > < b > Style< / b > { get; }< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.Style:Value')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.Style:Value:toggle" > ⊟< / span > Value< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.Style:Value" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.Style:Remarks')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.Style:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.Style:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('P:YamlDotNet.Core.Events.MappingStart.Style:Version Information')" >
< span id = "P:YamlDotNet.Core.Events.MappingStart.Style:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "P:YamlDotNet.Core.Events.MappingStart.Style:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< h3 id = "M:YamlDotNet.Core.Events.MappingStart.ToString" >
< a href = "javascript:toggle_display('M:YamlDotNet.Core.Events.MappingStart.ToString:member')" >
< span id = "M:YamlDotNet.Core.Events.MappingStart.ToString:member:toggle" > ⊟< / span > ToString Method< / a >
< / h3 >
< blockquote id = "M:YamlDotNet.Core.Events.MappingStart.ToString:member" >
< p class = "Summary" >
Returns a < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > that represents the current < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object" > object< / a > .
< / p >
< div class = "Signature" > public override < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > < b > ToString< / b > ()< / div >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('M:YamlDotNet.Core.Events.MappingStart.ToString:Returns')" >
< span id = "M:YamlDotNet.Core.Events.MappingStart.ToString:Returns:toggle" > ⊟< / span > Returns< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "M:YamlDotNet.Core.Events.MappingStart.ToString:Returns" >
A < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.String" > string< / a > that represents the current < a href = "http://www.go-mono.com/docs/monodoc.ashx?link=T:System.Object" > object< / a > .
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('M:YamlDotNet.Core.Events.MappingStart.ToString:Remarks')" >
< span id = "M:YamlDotNet.Core.Events.MappingStart.ToString:Remarks:toggle" > ⊟< / span > Remarks< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "M:YamlDotNet.Core.Events.MappingStart.ToString:Remarks" >
< span class = "NotEntered" > Documentation for this section has not yet been entered.< / span >
< / blockquote >
< h4 class = "Subsection" >
< a href = "javascript:toggle_display('M:YamlDotNet.Core.Events.MappingStart.ToString:Version Information')" >
< span id = "M:YamlDotNet.Core.Events.MappingStart.ToString:Version Information:toggle" > ⊟< / span > Requirements< / a >
< / h4 >
< blockquote class = "SubsectionBox" id = "M:YamlDotNet.Core.Events.MappingStart.ToString:Version Information" >
< b > Namespace: < / b > YamlDotNet.Core.Events< br / > < b > Assembly: < / b > YamlDotNet.Core (in YamlDotNet.Core.dll)< br / > < b > Assembly Versions: < / b > 0.2.3385.42326< / blockquote >
< hr size = "1" / >
< / blockquote >
< / blockquote >
2008-08-26 05:18:10 +04:00
< / div >
< hr size = "1" / >
< div class = "Copyright" >
< / div >
< / body >
< / html >