Server.Property.Parse C# (CSharp) 메소드

Parse() 공개 정적인 메소드

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

			prop.BindTo( type, access );

			return prop;
		}
	}