Server.Property.Parse C# (CSharp) Méthode

Parse() public static méthode

public static Parse ( Type type, string binding, PropertyAccess access ) : Property
type System.Type
binding string
access PropertyAccess
Résultat Property
		public static Property Parse( Type type, string binding, PropertyAccess access )
		{
			Property prop = new Property( binding );

			prop.BindTo( type, access );

			return prop;
		}
	}