SchemaZen.Library.Models.SqlAssembly.SqlAssembly C# (CSharp) Méthode

SqlAssembly() public méthode

public SqlAssembly ( string permissionSet, string name ) : System.Collections.Generic
permissionSet string
name string
Résultat System.Collections.Generic
		public SqlAssembly(string permissionSet, string name) {
			PermissionSet = permissionSet;
			Name = name;

            if (PermissionSet == "SAFE_ACCESS")
                PermissionSet = "SAFE";

            if (PermissionSet == "UNSAFE_ACCESS")
                PermissionSet = "UNSAFE";
        }