Interface IPLMLoginParameter
Interface representing a login parameter used for authentication within the PLM extension.
Namespace: CAMAPI.Extension.PLM
Assembly: CAMAPI.Extension.PLM.dll
Syntax
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("7C2013FA-D330-4EC7-9169-0E0010A04ACF")]
public interface IPLMLoginParameter
Properties
DefaultValue
Gets the default value of the parameter.
Declaration
string DefaultValue { get; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the unique identifier of the parameter.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
string |
LOV
Gets the list of possible values for the login parameter.
Declaration
IPLMLoginParamListOfValues LOV { get; }
Property Value
Type | Description |
---|---|
IPLMLoginParamListOfValues |
Login
Gets the value indicating whether this parameter represents a login field.
Declaration
bool Login { get; }
Property Value
Type | Description |
---|---|
bool |
Mandatory
Gets the value indicating whether the login parameter is mandatory..
Declaration
bool Mandatory { get; }
Property Value
Type | Description |
---|---|
bool |
Name
Gets the display name of the parameter.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
string |
Order
Gets the order in which the parameter appears.
Declaration
int Order { get; }
Property Value
Type | Description |
---|---|
int |
Password
Gets the value indicating whether this parameter is a password field.
Declaration
bool Password { get; }
Property Value
Type | Description |
---|---|
bool |