C# Class ThoughtWorksMingleLib.MingleCard

Datei anzeigen Open project: ThoughtWorksStudios/mingle.net Class Usage Examples

Public Methods

Method Description
AddCardAttributeFilterToPostData ( string name, string value ) : void

Adds a field to the PostData for subsequent use in POST operations.

AddPropertyFilterToPostData ( string name, string value ) : void

Adds a property to the PostData for subsequent use in POST operations.

Property data is actually a pair of list elements. One for the name and one for the value.

MingleCard ( ) : System

Constructs a Mingle Card object

MingleCard ( string card, IMingleProject project ) : System

Constructs a Mingle Card object

Update ( ) : void

Updates the persisted instance of this Card with properties associated with this object

Method Details

AddCardAttributeFilterToPostData() public method

Adds a field to the PostData for subsequent use in POST operations.
public AddCardAttributeFilterToPostData ( string name, string value ) : void
name string Name of the field in the card
value string Value of the data
return void

AddPropertyFilterToPostData() public method

Adds a property to the PostData for subsequent use in POST operations.
Property data is actually a pair of list elements. One for the name and one for the value.
public AddPropertyFilterToPostData ( string name, string value ) : void
name string Name of the property in the card
value string Value of the property
return void

MingleCard() public method

Constructs a Mingle Card object
public MingleCard ( ) : System
return System

MingleCard() public method

Constructs a Mingle Card object
public MingleCard ( string card, IMingleProject project ) : System
card string XML for a card
project IMingleProject Mingle project
return System

Update() public method

Updates the persisted instance of this Card with properties associated with this object
public Update ( ) : void
return void