Represents an erased provided field.
Constructor | Description |
Full Usage:
ProvidedField(fieldName, fieldType)
Parameters:
string
fieldType : Type
Returns: ProvidedField
|
Create a new provided field. It is not initially associated with any specific provided type definition.
|
Instance member | Description |
|
|
Full Usage:
this.AddDefinitionLocation(line, column, filePath)
Parameters:
int
column : int
filePath : string
|
|
Full Usage:
this.AddObsoleteAttribute(message, ?isError)
Parameters:
string
?isError : bool
|
|
Full Usage:
this.AddXmlDoc(xmlDoc)
Parameters:
string
|
|
Full Usage:
this.AddXmlDocComputed(xmlDocFunction)
Parameters:
unit -> string
|
Add XML documentation information to this provided field, where the computation of the documentation is delayed until necessary The documentation is re-computed every time it is required.
|
Full Usage:
this.AddXmlDocDelayed(xmlDocFunction)
Parameters:
unit -> string
|
Add XML documentation information to this provided field, where the computation of the documentation is delayed until necessary
|
|
|
Static member | Description |
Full Usage:
ProvidedField.Literal(fieldName, fieldType, literalValue)
Parameters:
string
fieldType : Type
literalValue : obj
Returns: ProvidedField
|
Create a new provided literal field. It is not initially associated with any specific provided type definition.
|