10 [PermissionSet(
SecurityAction.InheritanceDemand, Name =
"FullTrust")]
18 public object this[
string index]
22 return options[index];
26 options[index] = value;
36 object obj = options[
"IndentString"];
45 options[
"IndentString"] = value;
55 object obj = options[
"BracingStyle"];
64 options[
"BracingStyle"] = value;
75 object obj = options[
"ElseOnClosing"];
84 options[
"ElseOnClosing"] = value;
95 object obj = options[
"BlankLinesBetweenMembers"];
104 options[
"BlankLinesBetweenMembers"] = value;
116 object obj = options[
"VerbatimOrder"];
125 options[
"VerbatimOrder"] = value;
string IndentString
Gets or sets the string to use for indentations.
SecurityAction
Specifies the security actions that can be performed using declarative security.
bool BlankLinesBetweenMembers
Gets or sets a value indicating whether to insert blank lines between members.
Represents a set of options used by a code generator.
bool ElseOnClosing
Gets or sets a value indicating whether to append an else, catch, or finally block,...
Represents a nongeneric collection of key/value pairs.
string BracingStyle
Gets or sets the style to use for bracing.
bool VerbatimOrder
Gets or sets a value indicating whether to generate members in the order in which they occur in membe...
Implements IDictionary using a singly linked list. Recommended for collections that typically include...