Class EndPointUtility
Inheritance
System.Object
EndPointUtility
Namespace: Appearition.Internal.EndPoints
Assembly: Appearition.SDK.dll
Syntax
public static class EndPointUtility
Properties
activeEndPoints
All EMS End points currently loaded and active.
Declaration
public static List<EndPoint> activeEndPoints { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<EndPoint> | The active end points. |
Methods
GetEndPointFromDisplayName(String)
Using a display name, fetches the relevant end point.
Declaration
public static EndPoint GetEndPointFromDisplayName(string displayName)
Parameters
Type | Name | Description |
---|---|---|
System.String | displayName | Display name. |
Returns
Type | Description |
---|---|
EndPoint | The end point from display name. |
GetEndPointFromEndPointURL(String)
Using an end point URL, fetches the relevant end point.
Declaration
public static EndPoint GetEndPointFromEndPointURL(string endPointURL)
Parameters
Type | Name | Description |
---|---|---|
System.String | endPointURL | End point UR. |
Returns
Type | Description |
---|---|
EndPoint | The end point from end point UR. |
GetEndPointFromPortalURL(String)
Using a portal URL, fetches the relevant end point.
Declaration
public static EndPoint GetEndPointFromPortalURL(string portalURL)
Parameters
Type | Name | Description |
---|---|---|
System.String | portalURL | Portal UR. |
Returns
Type | Description |
---|---|
EndPoint | The end point from portal UR. |
GetTheEndPointURLsOfAllActiveEndPoints()
Fetches the end point URLs of all the existing end points.
Declaration
public static List<string> GetTheEndPointURLsOfAllActiveEndPoints()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The the end point UR ls of all active end points. |
GetTheNamesOfActiveAllEndPoints()
Fetches the display names of all the existing end points.
Declaration
public static List<string> GetTheNamesOfActiveAllEndPoints()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The the names of active all end points. |
RefreshEndPoints()
Refreshes the Active End Points container, by fetching all currently loaded end points.
Declaration
public static void RefreshEndPoints()