ScrewTurn.Wiki.LocalPageInfo.LocalPageInfo C# (CSharp) Method

LocalPageInfo() public method

Initializes a new instance of the PageInfo class.
public LocalPageInfo ( string fullName, IPagesStorageProviderV30 provider, System.DateTime creationDateTime, string file ) : System
fullName string The Full Name of the Page.
provider IPagesStorageProviderV30 The Pages Storage Provider that manages this Page.
creationDateTime System.DateTime The creation Date/Time.
file string The relative path of the file used for data storage.
return System
        public LocalPageInfo(string fullName, IPagesStorageProviderV30 provider, DateTime creationDateTime, string file)
            : base(fullName, provider, creationDateTime)
        {
            this.file = file;
        }
LocalPageInfo