Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/11 19:09:49 (14 years ago)
Author:
jwolfing
Message:

#1433 code formatted

Location:
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Helpers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Helpers/Admin.cs

    r6050 r6317  
    77
    88namespace HLWebOKBAdminPlugin.Helpers {
    9     public class Admin {
     9  public class Admin {
    1010
    11         public static AdministrationServiceClient GetClientFactory() {
    12             return GetClientFactory(GetSessionString("Username"), GetSessionString("Password"));
     11    public static AdministrationServiceClient GetClientFactory() {
     12      return GetClientFactory(GetSessionString("Username"), GetSessionString("Password"));
     13    }
     14
     15    public static AdministrationServiceClient GetClientFactory(string username, string password) {
     16      try {
     17        AdministrationServiceClient adminClient = new AdministrationServiceClient();
     18        adminClient.ClientCredentials.UserName.UserName = username;
     19        adminClient.ClientCredentials.UserName.Password = password;
     20        adminClient.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None;
     21        return adminClient;
     22      }
     23      catch {
     24      }
     25      return null;
     26    }
     27
     28    public static string GetSessionString(string name) {
     29      if (name != null) {
     30        object o = HttpContext.Current.Session[name];
     31        if (o != null) {
     32          return o.ToString();
    1333        }
    14 
    15         public static AdministrationServiceClient GetClientFactory(string username, string password) {
    16             try {
    17                 AdministrationServiceClient adminClient = new AdministrationServiceClient();
    18                 adminClient.ClientCredentials.UserName.UserName = username;
    19                 adminClient.ClientCredentials.UserName.Password = password;
    20                 adminClient.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None;
    21                 return adminClient;
    22             }
    23             catch {
    24             }
    25             return null;
    26         }
    27 
    28         public static string GetSessionString(string name) {
    29             if (name != null) {
    30                 object o = HttpContext.Current.Session[name];
    31                 if (o != null) {
    32                     return o.ToString();
    33                 }
    34             }
    35             return string.Empty;
    36         }
     34      }
     35      return string.Empty;
    3736    }
     37  }
    3838}
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Helpers/HtmlHelpers.cs

    r5186 r6317  
    66
    77namespace HLWebOKBAdminPlugin.Helpers {
    8     public static class HtmlHelpers {
     8  public static class HtmlHelpers {
    99
    10         public static string Truncate(this HtmlHelper helper, string input, int length) {
    11             //takes a string and adds "..." if length > max length
    12            
    13             if (input == null)
    14                 return "";
     10    public static string Truncate(this HtmlHelper helper, string input, int length) {
     11      //takes a string and adds "..." if length > max length
    1512
    16             if (input.Length <= length) {
    17                 return input;
    18             }//if
    19             else {
    20                 return input.Substring(0, length) + "...";
    21             }//else
    22         }//Truncate
     13      if (input == null)
     14        return "";
    2315
    24     }//HtmlHelpers
     16      if (input.Length <= length) {
     17        return input;
     18      }//if
     19      else {
     20        return input.Substring(0, length) + "...";
     21      }//else
     22    }//Truncate
     23
     24  }//HtmlHelpers
    2525}
Note: See TracChangeset for help on using the changeset viewer.