RODLCustomAttribute
Overview
The RODLCustomAttribute attribute allows to store service meta-information line service endpoint URL in assembly-level attributes.
RODLCustomAttribute attributes are generated by the CodeGen based on the information stored in the RODL under <CustomAttributes> XML node. Attributes generated are informational-only and aren't used by any Remoting SDK classes.
There is no need to directly define any RODLCustomAttribute atributes in user code.
Location
- Reference: RemObjects.SDK.dll
- Namespace: RemObjects.SDK
- Ancestry: Attribute | RODLCustomAttribute
Properties
Name
Gets or sets parameter name.
property Name: String read write;
String Name { get; set; }
Property Name() As String
Value
Gets or sets parameter value.
property Value: String read write;
String Value { get; set; }
Property Value() As String
Instance Methods
constructor
Creates a new instance of the RODLCustomAttribute and sets its Name and Value properties.
constructor(name: String; value: String)
RODLCustomAttribute(String name, String value)
Sub New(name As String, value As String)
Parameters:
- name: Parameter name
- value: Parameter value