OPC Studio User's Guide and Reference
Url Property (ResourceDescriptor)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib Namespace > ResourceDescriptor Class : Url Property
Gets or sets the System.Uri instance for this resource descriptor.
Syntax
'Declaration
 
<CanBeNullAttribute()>
<ComVisibleAttribute(False)>
<IgnoreDataMemberAttribute()>
<TypeConverterAttribute(System.ComponentModel.ExpandableObjectConverter)>
<XmlIgnoreAttribute()>
Public Property Url As Uri
'Usage
 
Dim instance As ResourceDescriptor
Dim value As Uri
 
instance.Url = value
 
value = instance.Url
[CanBeNull()]
[ComVisible(false)]
[IgnoreDataMember()]
[TypeConverter(System.ComponentModel.ExpandableObjectConverter)]
[XmlIgnore()]
public Uri Url {get; set;}
[CanBeNull()]
[ComVisible(false)]
[IgnoreDataMember()]
[TypeConverter(System.ComponentModel.ExpandableObjectConverter)]
[XmlIgnore()]
public:
property Uri^ Url {
   Uri^ get();
   void set (    Uri^ value);
}

Property Value

This value of this property can be null (Nothing in Visual Basic).

Remarks
A null reference denotes that a URI is not available.

The getter method of this property is pure, i.e. it does not have observable side effects.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also