C# Class RightScale.netClient.Link

Link object is defined by a href, rel(name) and a reference to where this link is inherited from.
ファイルを表示 Open project: rs-services/RightScaleNetAPI

Public Methods

Method Description
Link ( ) : System

Default constructor for building new links

Link ( string relVal, string hrefVal ) : System

Constructor designed to take a rel and href value and build a corresponding instance of a Link object

Link ( string relVal, string hrefVal, string inheritedSourceVal ) : System

Constructor designed to take a rel, href and inherited source value and build a corresponding instance of a Link object

Method Details

Link() public method

Default constructor for building new links
public Link ( ) : System
return System

Link() public method

Constructor designed to take a rel and href value and build a corresponding instance of a Link object
public Link ( string relVal, string hrefVal ) : System
relVal string value to assign to rel property
hrefVal string value to assign to href property
return System

Link() public method

Constructor designed to take a rel, href and inherited source value and build a corresponding instance of a Link object
public Link ( string relVal, string hrefVal, string inheritedSourceVal ) : System
relVal string value to assign to rel property
hrefVal string value to assign to href property
inheritedSourceVal string value to assign to inherited_source property
return System