Headless.PostEntry.PostEntry C# (CSharp) Method

PostEntry() public method

Initializes a new instance of the PostEntry class.
public PostEntry ( string name, System.Guid value ) : System
name string /// The name. ///
value System.Guid /// The value. ///
return System
        public PostEntry(string name, Guid value)
            : this(name, value.ToString())
        {
        }

Same methods

PostEntry::PostEntry ( string name, int value ) : System
PostEntry::PostEntry ( string name, long value ) : System
PostEntry::PostEntry ( string name, object value ) : System
PostEntry::PostEntry ( string name, short value ) : System
PostEntry::PostEntry ( string name, string value ) : System
PostEntry