Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TableServiceTable"/> class with the specified name.
 /// </summary>
 /// <param name="name">The name of the table.</param>
 public TableServiceTable(string name)
 {
     CommonUtility.CheckStringParameter(name, false, "name", TableConstants.TableServiceMaxStringPropertySizeInChars);
     this.TableName = name;
 }