ConoHaNet.OpenStackMember.GetSwiftSizeGraph C# (CSharp) Method

GetSwiftSizeGraph() public method

public GetSwiftSizeGraph ( DateTime startDate = null, DateTime endDate = null, string mode = null ) : string
startDate DateTime
endDate DateTime
mode string
return string
        public string GetSwiftSizeGraph(DateTime? startDate = null, DateTime? endDate = null, string mode = null)
        {
            string startDate_unixtime = (startDate == null) ? string.Empty : toUnixTime((DateTime)startDate);
            string endDate_unixtime = (endDate == null) ? string.Empty : toUnixTime((DateTime)endDate);

            return ServersProvider.GetSwiftSizeGraph(startDate_unixtime, endDate_unixtime, mode, this.DefaultRegion, this.Identity);
        }
OpenStackMember